You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: create/keyvaluestore.go
+14-6Lines changed: 14 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,14 @@ import (
15
15
16
16
typekeyValueStoreCmdstruct {
17
17
resourceCmd
18
-
Location meta.LocationName`placeholder:"${keyvaluestore_location_default}" help:"Where the Key-Value Store instance is created. Available locations are: ${keyvaluestore_location_options}"`
19
-
MemorySize*storage.KeyValueStoreMemorySize`placeholder:"${keyvaluestore_memorysize_default}" help:"Available amount of memory."`
20
-
MaxMemoryPolicy storage.KeyValueStoreMaxMemoryPolicy`placeholder:"${keyvaluestore_maxmemorypolicy_default}" help:"Behaviour when the memory limit is reached."`
21
-
AllowedCidrs []meta.IPv4CIDR`placeholder:"203.0.113.1/32" help:"IP addresses allowed to connect to the public endpoint."`
22
-
PublicNetworkingEnabled*bool`help:"If public networking is \"false\", it is only possible to access the service by configuring a service connection."`
18
+
Location meta.LocationName`placeholder:"${keyvaluestore_location_default}" help:"Where the Key-Value Store instance is created. Available locations are: ${keyvaluestore_location_options}"`
19
+
MemorySize*storage.KeyValueStoreMemorySize`placeholder:"${keyvaluestore_memorysize_default}" help:"Available amount of memory."`
20
+
MaxMemoryPolicy storage.KeyValueStoreMaxMemoryPolicy`placeholder:"${keyvaluestore_maxmemorypolicy_default}" help:"Behaviour when the memory limit is reached."`
21
+
AllowedCidrs []meta.IPv4CIDR`placeholder:"203.0.113.1/32" help:"IP addresses allowed to connect to the public endpoint."`
22
+
PublicNetworking*bool`negatable:"" help:"Enable or disable public networking. Enabled by default."`
Copy file name to clipboardExpand all lines: create/opensearch.go
+15-7Lines changed: 15 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,15 @@ import (
16
16
17
17
typeopenSearchCmdstruct {
18
18
resourceCmd
19
-
Location meta.LocationName`placeholder:"${opensearch_location_default}" help:"Where the OpenSearch cluster is created. Available locations are: ${opensearch_location_options}"`
20
-
ClusterType storage.OpenSearchClusterType`placeholder:"${opensearch_cluster_type_default}" help:"Type of cluster. Available types: ${opensearch_cluster_types}"`
21
-
MachineTypestring`placeholder:"${opensearch_machine_type_default}" help:"Defines the sizing of an OpenSearch instance. Available types: ${opensearch_machine_types}"`
22
-
AllowedCidrs []meta.IPv4CIDR`placeholder:"203.0.113.1/32" help:"IP addresses allowed to connect to the public endpoint."`
23
-
PublicNetworkingEnabled*bool`help:"If public networking is \"false\", it is only possible to access the service by configuring a service connection."`
24
-
BucketUsers []string`placeholder:"user1,user2" help:"BucketUsers specify the users who have read access to the OpenSearch snapshots bucket."`
19
+
Location meta.LocationName`placeholder:"${opensearch_location_default}" help:"Where the OpenSearch cluster is created. Available locations are: ${opensearch_location_options}"`
20
+
ClusterType storage.OpenSearchClusterType`placeholder:"${opensearch_cluster_type_default}" help:"Type of cluster. Available types: ${opensearch_cluster_types}"`
21
+
MachineTypestring`placeholder:"${opensearch_machine_type_default}" help:"Defines the sizing of an OpenSearch instance. Available types: ${opensearch_machine_types}"`
22
+
AllowedCidrs []meta.IPv4CIDR`placeholder:"203.0.113.1/32" help:"IP addresses allowed to connect to the public endpoint."`
23
+
BucketUsers []string`placeholder:"user1,user2" help:"BucketUsers specify the users who have read access to the OpenSearch snapshots bucket."`
24
+
PublicNetworking*bool`negatable:"" help:"Enable or disable public networking. Enabled by default."`
25
+
26
+
// Deprecated Flags
27
+
PublicNetworkingEnabled*bool`hidden:"" help:"If public networking is \"false\", it is only possible to access the service by configuring a service connection."`
Copy file name to clipboardExpand all lines: update/keyvaluestore.go
+14-6Lines changed: 14 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,13 @@ import (
13
13
14
14
typekeyValueStoreCmdstruct {
15
15
resourceCmd
16
-
MemorySize*storage.KeyValueStoreMemorySize`placeholder:"${keyvaluestore_memorysize_default}" help:"Available amount of memory."`
17
-
MaxMemoryPolicy*storage.KeyValueStoreMaxMemoryPolicy`placeholder:"${keyvaluestore_maxmemorypolicy_default}" help:"Behaviour when the memory limit is reached."`
18
-
AllowedCidrs*[]meta.IPv4CIDR`placeholder:"203.0.113.1/32" help:"IP addresses allowed to connect to the public endpoint."`
19
-
PublicNetworkingEnabled*bool`help:"If public networking is \"false\", it is only possible to access the service by configuring a service connection."`
16
+
MemorySize*storage.KeyValueStoreMemorySize`placeholder:"${keyvaluestore_memorysize_default}" help:"Available amount of memory."`
17
+
MaxMemoryPolicy*storage.KeyValueStoreMaxMemoryPolicy`placeholder:"${keyvaluestore_maxmemorypolicy_default}" help:"Behaviour when the memory limit is reached."`
18
+
AllowedCidrs*[]meta.IPv4CIDR`placeholder:"203.0.113.1/32" help:"IP addresses allowed to connect to the public endpoint."`
19
+
PublicNetworking*bool`negatable:"" help:"Enable or disable public networking."`
20
+
21
+
// Deprecated Flags
22
+
PublicNetworkingEnabled*bool`hidden:"" help:"If public networking is \"false\", it is only possible to access the service by configuring a service connection."`
0 commit comments