1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 23:08:48 +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

@ -8,7 +8,7 @@ SYNOPSIS
--producer-forwarding-rule=PRODUCER_FORWARDING_RULE
[--connection-preference=CONNECTION_PREFERENCE;
default="ACCEPT_AUTOMATIC"]
[--consumer-accept-list=[PROJECT=LIMIT,...]]
[--consumer-accept-list=[PROJECT_OR_NETWORK=LIMIT,...]]
[--consumer-reject-list=[REJECT_LIST,...]] [--description=DESCRIPTION]
[--domain-names=[DOMAIN_NAMES,...]] [--enable-proxy-protocol]
[--nat-subnets-region=NAT_SUBNETS_REGION]
@ -64,20 +64,31 @@ OPTIONAL FLAGS
Only accept connection requests from consumers with the approval of
the service provider.
--consumer-accept-list=[PROJECT=LIMIT,...]
Adds consumer project(s) with connection limit(s) to the accept list of
the service attachment.
--consumer-accept-list=[PROJECT_OR_NETWORK=LIMIT,...]
Specifies which consumer projects or networks are allowed to connect to
the service attachment. Each project or network has a connection limit.
A given service attachment can manage connections at either the project
or network level. Therefore, both the accept and reject lists for a
given service attachment must contain either only projects or only
networks.
For example, --consumer-accept-list myProjectId1=20 accepts a consumer
project myProjectId1 with connection limit 20.
project myProjectId1 with connection limit 20; --consumer-accept-list
projects/myProjectId1/global/networks/myNet1=20 accepts a consumer
network myNet1 with connection limit 20
◆ PROJECT_ID_OR_NUM - Consumer project id or number.
◆ CONNECTION_LIMIT - The max number of allowed connections.
◆ PROJECT_OR_NETWORK - Consumer project ID, project number or network
URL.
◆ CONNECTION_LIMIT - The maximum number of allowed connections.
--consumer-reject-list=[REJECT_LIST,...]
Specifies a comma separated list of projects that are not allowed to
connect to this service attachment. The project can be specified using
its id or number.
Specifies a comma separated list of projects or networks that are not
allowed to connect to this service attachment. The project can be
specified using its project ID or project number and the network can be
specified using its URL. A given service attachment can manage
connections at either the project or network level. Therefore, both the
reject and accept lists for a given service attachment must contain
either only projects or only networks.
--description=DESCRIPTION
An optional, textual description for the service attachment.

View file

@ -5,7 +5,7 @@ NAME
SYNOPSIS
gcloud compute service-attachments update NAME
[--connection-preference=CONNECTION_PREFERENCE]
[--consumer-accept-list=[PROJECT=LIMIT,...]]
[--consumer-accept-list=[PROJECT_OR_NETWORK=LIMIT,...]]
[--consumer-reject-list=[REJECT_LIST,...]] [--description=DESCRIPTION]
[--[no-]enable-proxy-protocol]
[--nat-subnets=NAT_SUBNETS,[NAT_SUBNETS,...]]
@ -50,20 +50,31 @@ FLAGS
Only accept connection requests from consumers with the approval of
the service provider.
--consumer-accept-list=[PROJECT=LIMIT,...]
Adds consumer project(s) with connection limit(s) to the accept list of
the service attachment.
--consumer-accept-list=[PROJECT_OR_NETWORK=LIMIT,...]
Specifies which consumer projects or networks are allowed to connect to
the service attachment. Each project or network has a connection limit.
A given service attachment can manage connections at either the project
or network level. Therefore, both the accept and reject lists for a
given service attachment must contain either only projects or only
networks.
For example, --consumer-accept-list myProjectId1=20 accepts a consumer
project myProjectId1 with connection limit 20.
project myProjectId1 with connection limit 20; --consumer-accept-list
projects/myProjectId1/global/networks/myNet1=20 accepts a consumer
network myNet1 with connection limit 20
◆ PROJECT_ID_OR_NUM - Consumer project id or number.
◆ CONNECTION_LIMIT - The max number of allowed connections.
◆ PROJECT_OR_NETWORK - Consumer project ID, project number or network
URL.
◆ CONNECTION_LIMIT - The maximum number of allowed connections.
--consumer-reject-list=[REJECT_LIST,...]
Specifies a comma separated list of projects that are not allowed to
connect to this service attachment. The project can be specified using
its id or number.
Specifies a comma separated list of projects or networks that are not
allowed to connect to this service attachment. The project can be
specified using its project ID or project number and the network can be
specified using its URL. A given service attachment can manage
connections at either the project or network level. Therefore, both the
reject and accept lists for a given service attachment must contain
either only projects or only networks.
--description=DESCRIPTION
An optional, textual description for the service attachment.