Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ ticloud serverless private-link-connection create [flags]
### Options

```
--alicloud.endpoint-servicename string Alicloud endpoint service name.
--aws.endpoint-service-name string AWS endpoint service name.
--aws.endpoint-service-region string AWS endpoint service region.
-c, --cluster-id string The cluster ID.
--display-name string Display name for the private link connection.
-h, --help help for create
--type string Type of the private link connection, one of ["AWS_ENDPOINT_SERVICE" "ALICLOUD_ENDPOINT_SERVICE"]
--alicloud.endpoint-service-name string Alicloud endpoint service name.
--aws.endpoint-service-name string AWS endpoint service name.
--aws.endpoint-service-region string AWS endpoint service region.
-c, --cluster-id string The cluster ID.
--display-name string Display name for the private link connection.
-h, --help help for create
--type string Type of the private link connection, one of ["AWS_ENDPOINT_SERVICE" "ALICLOUD_ENDPOINT_SERVICE"]
```

### Options inherited from parent commands
Expand Down
2 changes: 1 addition & 1 deletion internal/flag/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const (
PrivateLinkConnectionType string = "type"
AWSEndpointServiceName string = "aws.endpoint-service-name"
AWSEndpointServiceRegion string = "aws.endpoint-service-region"
AlicloudEndpointServiceName string = "alicloud.endpoint-servicename"
AlicloudEndpointServiceName string = "alicloud.endpoint-service-name"
)

const OutputHelp = "Output format, one of [\"human\" \"json\"]. For the complete result, please use json format."
Loading