1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 14:56:05 +00:00

gcloud: Wed May 24 10:23:00 UTC 2023

This commit is contained in:
Automated 2023-05-24 10:23:00 +00:00
parent a56fab68e5
commit d0919dce4f
151 changed files with 3286 additions and 306 deletions

View file

@ -46,7 +46,7 @@ FLAGS
--provisioned-throughput=PROVISIONED_THROUGHPUT
Provisioned throughput of disk to update. The throughput unit is MB per
sec. Only for use with disks of type hyperdisk-throughput
sec.
--update-labels=[KEY=VALUE,...]
List of label KEY=VALUE pairs to update. If a label exists, its value

View file

@ -12,6 +12,7 @@ SYNOPSIS
[--dest-threat-intelligence=[DEST_THREAT_INTELLIGENCE_LISTS,...]]
[--direction=DIRECTION] [--[no-]disabled] [--[no-]enable-logging]
[--layer4-configs=[LAYER4_CONFIG,...]] [--organization=ORGANIZATION]
[--security-profile-group=SECURITY_PROFILE_GROUP]
[--src-address-groups=[SOURCE_ADDRESS_GROUPS,...]]
[--src-fqdns=[SOURCE_FQDNS,...]] [--src-ip-ranges=[SRC_IP_RANGE,...]]
[--src-region-codes=[SOURCE_REGION_CODES,...]]
@ -91,6 +92,17 @@ OPTIONAL FLAGS
Organization which the organization firewall policy belongs to. Must be
set if FIREWALL_POLICY is short name.
--security-profile-group=SECURITY_PROFILE_GROUP
An org-based security profile group to be used with
apply_security_profile_group action.Allowed formats are:a)
http(s)://<namespace>/<api>/organizations/<org_id>/locations/global/securityProfileGroups/<profile>b)
(//)<namespace>/organizations/<org_id>/locations/global/securityProfileGroups/<profile>c)
<profile>In case 'c' gCloud CLI will create a reference matching format
'a',but to make it work CLOUDSDK_API_ENDPOINT_OVERRIDES_NETWORKSERVICES
property must be set.In order to set this property, please run the
command 'gcloud config set api_endpoint_overrides/networkservices
https://<namespace>/'
--src-address-groups=[SOURCE_ADDRESS_GROUPS,...]
Source address groups to match for this rule. Can only be specified if
DIRECTION is ingress.

View file

@ -13,6 +13,7 @@ SYNOPSIS
[--direction=DIRECTION] [--[no-]disabled] [--[no-]enable-logging]
[--layer4-configs=[LAYER4_CONFIG,...]] [--new-priority=NEW_PRIORITY]
[--organization=ORGANIZATION]
[--security-profile-group=SECURITY_PROFILE_GROUP]
[--src-address-groups=[SOURCE_ADDRESS_GROUPS,...]]
[--src-fqdns=[SOURCE_FQDNS,...]] [--src-ip-ranges=[SRC_IP_RANGE,...]]
[--src-region-codes=[SOURCE_REGION_CODES,...]]
@ -96,6 +97,17 @@ OPTIONAL FLAGS
Organization which the organization firewall policy belongs to. Must be
set if FIREWALL_POLICY is short name.
--security-profile-group=SECURITY_PROFILE_GROUP
An org-based security profile group to be used with
apply_security_profile_group action.Allowed formats are:a)
http(s)://<namespace>/<api>/organizations/<org_id>/locations/global/securityProfileGroups/<profile>b)
(//)<namespace>/organizations/<org_id>/locations/global/securityProfileGroups/<profile>c)
<profile>In case 'c' gCloud CLI will create a reference matching format
'a',but to make it work CLOUDSDK_API_ENDPOINT_OVERRIDES_NETWORKSERVICES
property must be set.In order to set this property, please run the
command 'gcloud config set api_endpoint_overrides/networkservices
https://<namespace>/'
--src-address-groups=[SOURCE_ADDRESS_GROUPS,...]
Source address groups to match for this rule. Can only be specified if
DIRECTION is ingress.

View file

@ -5,6 +5,7 @@ NAME
SYNOPSIS
gcloud alpha compute instance-groups managed create NAME --size=SIZE
--template=TEMPLATE [--base-instance-name=BASE_INSTANCE_NAME]
[--default-action-on-vm-failure=ACTION_ON_VM_FAILURE]
[--description=DESCRIPTION] [--[no-]force-update-on-repair]
[--initial-delay=INITIAL_DELAY] [--instance-redistribution-type=TYPE]
[--list-managed-instances-results=MODE]
@ -72,6 +73,17 @@ OPTIONAL FLAGS
with the managed instance group. If not provided base instance name
will be the prefix of instance group name.
--default-action-on-vm-failure=ACTION_ON_VM_FAILURE
Specifies the action that a MIG performs on a failed or an unhealthy
VM. A VM is marked as unhealthy when the application running on that VM
fails a health check. By default, the value of the flag is set to
repair. ACTION_ON_VM_FAILURE must be one of:
do-nothing
MIG does not repair a failed or an unhealthy VM.
repair
MIG automatically repairs a failed or an unhealthy VM.
--description=DESCRIPTION
An optional description for this group.

View file

@ -4,6 +4,7 @@ NAME
SYNOPSIS
gcloud alpha compute instance-groups managed update NAME
[--default-action-on-vm-failure=ACTION_ON_VM_FAILURE]
[--description=DESCRIPTION] [--[no-]force-update-on-repair]
[--instance-redistribution-type=TYPE]
[--list-managed-instances-results=MODE]
@ -61,6 +62,17 @@ POSITIONAL ARGUMENTS
Name of the managed instance group to update.
FLAGS
--default-action-on-vm-failure=ACTION_ON_VM_FAILURE
Specifies the action that a MIG performs on a failed or an unhealthy
VM. A VM is marked as unhealthy when the application running on that VM
fails a health check. By default, the value of the flag is set to
repair. ACTION_ON_VM_FAILURE must be one of:
do-nothing
MIG does not repair a failed or an unhealthy VM.
repair
MIG automatically repairs a failed or an unhealthy VM.
--description=DESCRIPTION
An optional description for this group. To clear the description, set
the value to an empty string.

View file

@ -251,6 +251,10 @@ FLAGS
number of I/O operations per second that the disk can handle. Value
must be between 10,000 and 120,000.
provisioned-throughput
Indicates how much throughput to provision for the disk. This sets
the number of throughput mb per second that the disk can handle.
disk-resource-policy
Resource policy to apply to the disk. Specify a full or partial
URL. For example:
@ -342,10 +346,6 @@ FLAGS
be the same as the instance zone. You can't use this option with
boot disks.
provisioned-throughput
Indicates how much throughput to provision for the disk. This sets
the number of throughput mb per second that the disk can handle.
--description=DESCRIPTION
Specifies a textual description for the instance template.

View file

@ -329,6 +329,10 @@ FLAGS
number of I/O operations per second that the disk can handle. Value
must be between 10,000 and 120,000.
provisioned-throughput
Indicates how much throughput to provision for the disk. This sets
the number of throughput mb per second that the disk can handle.
disk-resource-policy
Resource policy to apply to the disk. Specify a full or partial
URL. For example:

View file

@ -277,6 +277,10 @@ OPTIONAL FLAGS
number of I/O operations per second that the disk can handle. Value
must be between 10,000 and 120,000.
provisioned-throughput
Indicates how much throughput to provision for the disk. This sets
the number of throughput mb per second that the disk can handle.
disk-resource-policy
Resource policy to apply to the disk. Specify a full or partial
URL. For example:
@ -375,10 +379,6 @@ OPTIONAL FLAGS
Path to a Customer-Supplied Encryption Key (CSEK) key file for the
image. Must be specified with image-csek-required.
provisioned-throughput
Indicates how much throughput to provision for the disk. This sets
the number of throughput mb per second that the disk can handle.
--description=DESCRIPTION
Specifies a textual description of the instances.

View file

@ -282,6 +282,10 @@ FLAGS
number of I/O operations per second that the disk can handle. Value
must be between 10,000 and 120,000.
provisioned-throughput
Indicates how much throughput to provision for the disk. This sets
the number of throughput mb per second that the disk can handle.
disk-resource-policy
Resource policy to apply to the disk. Specify a full or partial
URL. For example:
@ -408,10 +412,6 @@ FLAGS
be the same as the instance zone. You can't use this option with
boot disks.
provisioned-throughput
Indicates how much throughput to provision for the disk. This sets
the number of throughput mb per second that the disk can handle.
--csek-key-file=FILE
Path to a Customer-Supplied Encryption Key (CSEK) key file that maps
Compute Engine resources to user managed keys to be used when creating,

View file

@ -352,6 +352,10 @@ FLAGS
number of I/O operations per second that the disk can handle. Value
must be between 10,000 and 120,000.
provisioned-throughput
Indicates how much throughput to provision for the disk. This sets
the number of throughput mb per second that the disk can handle.
disk-resource-policy
Resource policy to apply to the disk. Specify a full or partial
URL. For example:

View file

@ -74,12 +74,11 @@ OPTIONAL FLAGS
Up to 16 candidate prefixes that can be used to restrict the allocation
of cloudRouterIpAddress and customerRouterIpAddress for this
attachment. All prefixes must be within link-local address space.
Google will attempt to select an unused subnet of SUBNET_LENGTH from
the supplied candidate subnet(s), or all of link-local space if no
subnets supplied. Google will not re-use a subnet already in-use by
your project, even if it's contained in one of the candidate subnets.
The request will fail if all candidate subnets are in use at Google's
edge.
Google attempts to select an unused subnet of SUBNET_LENGTH from the
supplied candidate subnet(s), or all of link-local space if no subnets
supplied. Google does not re-use a subnet already in-use by your
project, even if it's contained in one of the candidate subnets. The
request fails if all candidate subnets are in use at Google's edge.
--cloud-router-ipv6-interface-id=INTERFACE_ID
If supplied, the interface id (index within the subnet) to be used for
@ -177,14 +176,7 @@ OPTIONAL FLAGS
whose remote location's "constraints.subnetLengthRange" field specifies
a minimum subnet length of 30. In that case, the default value is 30.
The default value is recommended when there's no requirement on the
subnet length. SUBNET_LENGTH must be one of:
29:
subnet length 29.
30:
subnet length 30.
SUBNET_LENGTH must be one of: 29, 30.
subnet length. SUBNET_LENGTH must be one of: 29, 30.
--vlan=VLAN
Desired VLAN for this attachment, in the range 2-4093. If not supplied,

View file

@ -32,7 +32,7 @@ EXAMPLES
$ gcloud alpha compute interconnects create \
example-cc-interconnect --interconnect-type=DEDICATED \
--link-type=LINK_TYPE_ETHERNET_100G_LR \
--link-type=LINK_TYPE_ETHERNET_10G_LR \
--location=example-zone1-1 --requested-link-count=1 \
--remote-location=example-remote-location \
--noc-contact-email=noc@example.com \
@ -80,7 +80,7 @@ OPTIONAL FLAGS
--customer-name=CUSTOMER_NAME
Customer name to put in the Letter of Authorization as the party
authorized to request an interconnect. This field is required for most
Interconnects, however it is prohibited when creating a Cross-Cloud
interconnects, however it is prohibited when creating a Cross-Cloud
Interconnect.
--description=DESCRIPTION

View file

@ -34,7 +34,7 @@ GROUPS
configuration.
remote-locations
(ALPHA) Read and manipulate Compute Engine interconnect remote
(ALPHA) Read and manipulate Google Compute Engine interconnect remote
locations.
COMMANDS

View file

@ -1,15 +1,16 @@
NAME
gcloud alpha compute interconnects remote-locations describe - describe a
Compute Engine interconnect remote location
Google Compute Engine interconnect remote location
SYNOPSIS
gcloud alpha compute interconnects remote-locations describe NAME
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(ALPHA) Displays all data associated with Compute Engine interconnect
remote location in a project.
(ALPHA) Displays all data associated with Google Compute Engine
interconnect remote location in a project.
EXAMPLES
Example of usage:
$ gcloud alpha compute interconnects remote-locations describe \
@ -17,7 +18,7 @@ DESCRIPTION
POSITIONAL ARGUMENTS
NAME
Name of the interconnect remote location to describe.
Name of the Cloud Interconnect remote location to describe.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
@ -31,5 +32,9 @@ NOTES
This command is currently in alpha and might change without notice. If this
command fails with API permission errors despite specifying the correct
project, you might be trying to access an API with an invitation-only early
access allowlist.
access allowlist. These variants are also available:
$ gcloud compute interconnects remote-locations describe
$ gcloud beta compute interconnects remote-locations describe

View file

@ -1,6 +1,6 @@
NAME
gcloud alpha compute interconnects remote-locations - read and manipulate
Compute Engine interconnect remote locations
Google Compute Engine interconnect remote locations
SYNOPSIS
gcloud alpha compute interconnects remote-locations COMMAND
@ -18,14 +18,18 @@ COMMANDS
COMMAND is one of the following:
describe
(ALPHA) Describe a Compute Engine interconnect remote location.
(ALPHA) Describe a Google Compute Engine interconnect remote location.
list
(ALPHA) List Google Compute Engine interconnect remote locations.
(ALPHA) List Google Compute Engine Cloud Interconnect remote locations.
NOTES
This command is currently in alpha and might change without notice. If this
command fails with API permission errors despite specifying the correct
project, you might be trying to access an API with an invitation-only early
access allowlist.
access allowlist. These variants are also available:
$ gcloud compute interconnects remote-locations
$ gcloud beta compute interconnects remote-locations

View file

@ -1,6 +1,6 @@
NAME
gcloud alpha compute interconnects remote-locations list - list Google
Compute Engine interconnect remote locations
Compute Engine Cloud Interconnect remote locations
SYNOPSIS
gcloud alpha compute interconnects remote-locations list
@ -9,14 +9,16 @@ SYNOPSIS
DESCRIPTION
(ALPHA) gcloud alpha compute interconnects remote-locations list displays
all Google Compute Engine interconnect remote locations in a project.
all Google Compute Engine Cloud Interconnect remote locations in a project.
EXAMPLES
To list all interconnect remote locations in a project in table form, run:
To list all Cloud Interconnect remote locations in a project in table form,
run:
$ gcloud alpha compute interconnects remote-locations list
To list the URIs of all interconnect remote locations in a project, run:
To list the URIs of all Cloud Interconnect remote locations in a project,
run:
$ gcloud alpha compute interconnects remote-locations list --uri
@ -64,5 +66,9 @@ NOTES
This command is currently in alpha and might change without notice. If this
command fails with API permission errors despite specifying the correct
project, you might be trying to access an API with an invitation-only early
access allowlist.
access allowlist. These variants are also available:
$ gcloud compute interconnects remote-locations list
$ gcloud beta compute interconnects remote-locations list

View file

@ -12,6 +12,7 @@ SYNOPSIS
[--dest-threat-intelligence=[DEST_THREAT_INTELLIGENCE_LISTS,...]]
[--direction=DIRECTION] [--[no-]disabled] [--[no-]enable-logging]
[--layer4-configs=[LAYER4_CONFIG,...]]
[--security-profile-group=SECURITY_PROFILE_GROUP]
[--src-address-groups=[SOURCE_ADDRESS_GROUPS,...]]
[--src-fqdns=[SOURCE_FQDNS,...]] [--src-ip-ranges=[SRC_IP_RANGE,...]]
[--src-region-codes=[SOURCE_REGION_CODES,...]]
@ -96,6 +97,10 @@ OPTIONAL FLAGS
A list of destination protocols and ports to which the firewall rule
will apply.
--security-profile-group=SECURITY_PROFILE_GROUP
A security profile group to be used with apply_security_profile_group
action.
--src-address-groups=[SOURCE_ADDRESS_GROUPS,...]
Source address groups to match for this rule. Can only be specified if
DIRECTION is ingress.

View file

@ -12,6 +12,7 @@ SYNOPSIS
[--dest-threat-intelligence=[DEST_THREAT_INTELLIGENCE_LISTS,...]]
[--direction=DIRECTION] [--[no-]disabled] [--[no-]enable-logging]
[--layer4-configs=[LAYER4_CONFIG,...]] [--new-priority=NEW_PRIORITY]
[--security-profile-group=SECURITY_PROFILE_GROUP]
[--src-address-groups=[SOURCE_ADDRESS_GROUPS,...]]
[--src-fqdns=[SOURCE_FQDNS,...]] [--src-ip-ranges=[SRC_IP_RANGE,...]]
[--src-region-codes=[SOURCE_REGION_CODES,...]]
@ -92,6 +93,10 @@ OPTIONAL FLAGS
--new-priority=NEW_PRIORITY
New priority for the rule to update. Valid in [0, 65535].
--security-profile-group=SECURITY_PROFILE_GROUP
A security profile group to be used with apply_security_profile_group
action.
--src-address-groups=[SOURCE_ADDRESS_GROUPS,...]
Source address groups to match for this rule. Can only be specified if
DIRECTION is ingress.

View file

@ -261,6 +261,10 @@ OPTIONAL FLAGS
number of I/O operations per second that the disk can handle. Value
must be between 10,000 and 120,000.
provisioned-throughput
Indicates how much throughput to provision for the disk. This sets
the number of throughput mb per second that the disk can handle.
disk-resource-policy
Resource policy to apply to the disk. Specify a full or partial
URL. For example:
@ -359,10 +363,6 @@ OPTIONAL FLAGS
Path to a Customer-Supplied Encryption Key (CSEK) key file for the
image. Must be specified with image-csek-required.
provisioned-throughput
Indicates how much throughput to provision for the disk. This sets
the number of throughput mb per second that the disk can handle.
--description=DESCRIPTION
Specifies a textual description of the instances.

View file

@ -128,10 +128,13 @@ OPTIONAL FLAGS
For VM Endpoints
ENDPOINT_TYPE_SWG
For Secure Web Gateway Endpoints
ENDPOINT_TYPE_MANAGED_PROXY_LB
For Regional Internal/External HTTP(S) and TCP Proxy load balancer endpoints
The default is ENDPOINT_TYPE_VM.
ENDPOINT_TYPE must be one of: ENDPOINT_TYPE_VM, ENDPOINT_TYPE_SWG.
ENDPOINT_TYPE must be one of: ENDPOINT_TYPE_VM, ENDPOINT_TYPE_SWG,
ENDPOINT_TYPE_MANAGED_PROXY_LB.
--icmp-idle-timeout=ICMP_IDLE_TIMEOUT
Timeout for ICMP connections. See

View file

@ -4,7 +4,9 @@ NAME
SYNOPSIS
gcloud alpha compute target-http-proxies create NAME --url-map=URL_MAP
[--description=DESCRIPTION] [--proxy-bind] [--global | --region=REGION]
[--description=DESCRIPTION]
[--http-keep-alive-timeout-sec=HTTP_KEEP_ALIVE_TIMEOUT_SEC]
[--proxy-bind] [--global | --region=REGION]
[--global-url-map | --url-map-region=URL_MAP_REGION]
[GCLOUD_WIDE_FLAG ...]
@ -48,6 +50,13 @@ OPTIONAL FLAGS
--description=DESCRIPTION
An optional, textual description for the target HTTP proxy.
--http-keep-alive-timeout-sec=HTTP_KEEP_ALIVE_TIMEOUT_SEC
Specifies how long to keep a connection open, after completing a
response, while there is no matching traffic (in seconds). If an HTTP
keep-alive is not specified, a default value (610 seconds) will be
used. For Global external HTTP(S) load balancer, the minimum allowed
value is 5 seconds and the maximum allowed value is 1200 seconds.
--proxy-bind
This flag applies when the load_balancing_scheme of the associated
backend service is INTERNAL_SELF_MANAGED. When specified, the envoy

View file

@ -4,6 +4,8 @@ NAME
SYNOPSIS
gcloud alpha compute target-http-proxies update NAME --url-map=URL_MAP
[--clear-http-keep-alive-timeout-sec
| --http-keep-alive-timeout-sec=HTTP_KEEP_ALIVE_TIMEOUT_SEC]
[--global | --region=REGION]
[--global-url-map | --url-map-region=URL_MAP_REGION]
[GCLOUD_WIDE_FLAG ...]
@ -41,6 +43,18 @@ REQUIRED FLAGS
referring to, you must first delete the target HTTP proxy.
OPTIONAL FLAGS
At most one of these can be specified:
--clear-http-keep-alive-timeout-sec
Clears previously configured http keep alive timeout sec
--http-keep-alive-timeout-sec=HTTP_KEEP_ALIVE_TIMEOUT_SEC
Specifies how long to keep a connection open, after completing a
response, while there is no matching traffic (in seconds). If an HTTP
keep-alive is not specified, a default value (610 seconds) will be
used. For Global external HTTP(S) load balancer, the minimum allowed
value is 5 seconds and the maximum allowed value is 1200 seconds.
At most one of these can be specified:
--global

View file

@ -5,8 +5,9 @@ NAME
SYNOPSIS
gcloud alpha compute target-https-proxies create NAME --url-map=URL_MAP
[--certificate-map=CERTIFICATE_MAP] [--description=DESCRIPTION]
[--http-keep-alive-timeout-sec=HTTP_KEEP_ALIVE_TIMEOUT_SEC]
[--proxy-bind] [--quic-override=QUIC_OVERRIDE; default="NONE"]
[--ssl-policy=SSL_POLICY]
[--server-tls-policy=SERVER_TLS_POLICY] [--ssl-policy=SSL_POLICY]
[--certificate-manager-certificates=[CERTIFICATE_MANAGER_CERTIFICATES,
...] | --ssl-certificates=SSL_CERTIFICATE,[...]]
[--global | --region=REGION]
@ -78,6 +79,13 @@ OPTIONAL FLAGS
--description=DESCRIPTION
An optional, textual description for the target HTTPS proxy.
--http-keep-alive-timeout-sec=HTTP_KEEP_ALIVE_TIMEOUT_SEC
Specifies how long to keep a connection open, after completing a
response, while there is no matching traffic (in seconds). If an HTTP
keep-alive is not specified, a default value (610 seconds) will be
used. For Global external HTTP(S) load balancer, the minimum allowed
value is 5 seconds and the maximum allowed value is 1200 seconds.
--proxy-bind
This flag applies when the load_balancing_scheme of the associated
backend service is INTERNAL_SELF_MANAGED. When specified, the envoy
@ -97,6 +105,28 @@ OPTIONAL FLAGS
NONE
Allows Google to control when QUIC is rolled out.
Server tls policy resource - The server TLS policy to attach. This
represents a Cloud resource. (NOTE) Some attributes are not given
arguments in this group but can be set in other ways.
To set the project attribute:
◆ provide the argument --server-tls-policy on the command line with a
fully specified name;
◆ provide the argument --project on the command line;
◆ set the property core/project.
To set the location attribute:
◆ provide the argument --server-tls-policy on the command line with a
fully specified name;
◆ default value of location is [global].
--server-tls-policy=SERVER_TLS_POLICY
ID of the server_tls_policy or fully qualified identifier for the
server_tls_policy.
To set the server_tls_policy attribute:
▸ provide the argument --server-tls-policy on the command line.
--ssl-policy=SSL_POLICY
A reference to an SSL policy resource that defines the server-side
support for SSL features and affects the connections between clients

View file

@ -10,6 +10,9 @@ SYNOPSIS
| --ssl-certificates=SSL_CERTIFICATE,[...] --global-ssl-certificates
| --ssl-certificates-region=SSL_CERTIFICATES_REGION
| --certificate-map=CERTIFICATE_MAP | --clear-certificate-map]
[--clear-http-keep-alive-timeout-sec
| --http-keep-alive-timeout-sec=HTTP_KEEP_ALIVE_TIMEOUT_SEC]
[--clear-server-tls-policy | --server-tls-policy=SERVER_TLS_POLICY]
[--clear-ssl-policy | --ssl-policy=SSL_POLICY --global-ssl-policy
| --ssl-policy-region=SSL_POLICY_REGION] [--global | --region=REGION]
[--global-url-map | --url-map-region=URL_MAP_REGION]
@ -160,6 +163,45 @@ FLAGS
--clear-certificate-map
Removes any attached certificate map from the HTTPS proxy.
At most one of these can be specified:
--clear-http-keep-alive-timeout-sec
Clears previously configured http keep alive timeout sec
--http-keep-alive-timeout-sec=HTTP_KEEP_ALIVE_TIMEOUT_SEC
Specifies how long to keep a connection open, after completing a
response, while there is no matching traffic (in seconds). If an HTTP
keep-alive is not specified, a default value (610 seconds) will be
used. For Global external HTTP(S) load balancer, the minimum allowed
value is 5 seconds and the maximum allowed value is 1200 seconds.
At most one of these can be specified:
--clear-server-tls-policy
Removes any attached Server TLS policy.
Server tls policy resource - The server TLS policy to attach. This
represents a Cloud resource. (NOTE) Some attributes are not given
arguments in this group but can be set in other ways.
To set the project attribute:
▸ provide the argument --server-tls-policy on the command line with a
fully specified name;
▸ provide the argument --project on the command line;
▸ set the property core/project.
To set the location attribute:
▸ provide the argument --server-tls-policy on the command line with a
fully specified name;
▸ default value of location is [global].
--server-tls-policy=SERVER_TLS_POLICY
ID of the server_tls_policy or fully qualified identifier for the
server_tls_policy.
To set the server_tls_policy attribute:
▫ provide the argument --server-tls-policy on the command line.
At most one of these can be specified:
--clear-ssl-policy