Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3d80092

Browse files
committedNov 1, 2022
feat(servicecontrol): update the api
#### servicecontrol:v1 The following keys were added: - schemas.ResourceInfo.properties.permission.type (Total Keys: 1)
1 parent f0fdbaf commit 3d80092

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed
 

‎docs/dyn/servicecontrol_v1.services.html

+2
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,7 @@ <h3>Method Details</h3>
392392
},
393393
&quot;resources&quot;: [ # The resources that are involved in the operation. The maximum supported number of entries in this field is 100.
394394
{ # Describes a resource associated with this operation.
395+
&quot;permission&quot;: &quot;A String&quot;, # The resource permission required for this request.
395396
&quot;resourceContainer&quot;: &quot;A String&quot;, # The identifier of the parent of this resource instance. Must be in one of the following formats: - `projects/` - `folders/` - `organizations/`
396397
&quot;resourceLocation&quot;: &quot;A String&quot;, # The location of the resource. If not empty, the resource will be checked against location policy. The value must be a valid zone, region or multiregion. For example: &quot;europe-west4&quot; or &quot;northamerica-northeast1-a&quot;
397398
&quot;resourceName&quot;: &quot;A String&quot;, # Name of the resource. This is used for auditing purposes.
@@ -689,6 +690,7 @@ <h3>Method Details</h3>
689690
},
690691
&quot;resources&quot;: [ # The resources that are involved in the operation. The maximum supported number of entries in this field is 100.
691692
{ # Describes a resource associated with this operation.
693+
&quot;permission&quot;: &quot;A String&quot;, # The resource permission required for this request.
692694
&quot;resourceContainer&quot;: &quot;A String&quot;, # The identifier of the parent of this resource instance. Must be in one of the following formats: - `projects/` - `folders/` - `organizations/`
693695
&quot;resourceLocation&quot;: &quot;A String&quot;, # The location of the resource. If not empty, the resource will be checked against location policy. The value must be a valid zone, region or multiregion. For example: &quot;europe-west4&quot; or &quot;northamerica-northeast1-a&quot;
694696
&quot;resourceName&quot;: &quot;A String&quot;, # Name of the resource. This is used for auditing purposes.

‎googleapiclient/discovery_cache/documents/servicecontrol.v1.json

+7-3
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
}
198198
}
199199
},
200-
"revision": "20220915",
200+
"revision": "20221014",
201201
"rootUrl": "https://servicecontrol.googleapis.com/",
202202
"schemas": {
203203
"AllocateInfo": {
@@ -1600,15 +1600,15 @@
16001600
"id": "RequestMetadata",
16011601
"properties": {
16021602
"callerIp": {
1603-
"description": "The IP address of the caller. For caller from internet, this will be public IPv4 or IPv6 address. For caller from a Compute Engine VM with external IP address, this will be the VM's external IP address. For caller from a Compute Engine VM without external IP address, if the VM is in the same organization (or project) as the accessed resource, `caller_ip` will be the VM's internal IPv4 address, otherwise the `caller_ip` will be redacted to \"gce-internal-ip\". See https://cloud.google.com/compute/docs/vpc/ for more information.",
1603+
"description": "The IP address of the caller. For a caller from the internet, this will be the public IPv4 or IPv6 address. For calls made from inside Google's internal production network from one GCP service to another, `caller_ip` will be redacted to \"private\". For a caller from a Compute Engine VM with a external IP address, `caller_ip` will be the VM's external IP address. For a caller from a Compute Engine VM without a external IP address, if the VM is in the same organization (or project) as the accessed resource, `caller_ip` will be the VM's internal IPv4 address, otherwise `caller_ip` will be redacted to \"gce-internal-ip\". See https://cloud.google.com/compute/docs/vpc/ for more information.",
16041604
"type": "string"
16051605
},
16061606
"callerNetwork": {
16071607
"description": "The network of the caller. Set only if the network host project is part of the same GCP organization (or project) as the accessed resource. See https://cloud.google.com/compute/docs/vpc/ for more information. This is a scheme-less URI full resource name. For example: \"//compute.googleapis.com/projects/PROJECT_ID/global/networks/NETWORK_ID\"",
16081608
"type": "string"
16091609
},
16101610
"callerSuppliedUserAgent": {
1611-
"description": "The user agent of the caller. This information is not authenticated and should be treated accordingly. For example: + `google-api-python-client/1.4.0`: The request was made by the Google API client for Python. + `Cloud SDK Command Line Tool apitools-client/1.0 gcloud/0.9.62`: The request was made by the Google Cloud SDK CLI (gcloud). + `AppEngine-Google; (+http://code.google.com/appengine; appid: s~my-project`: The request was made from the `my-project` App Engine app. NOLINT",
1611+
"description": "The user agent of the caller. This information is not authenticated and should be treated accordingly. For example: + `google-api-python-client/1.4.0`: The request was made by the Google API client for Python. + `Cloud SDK Command Line Tool apitools-client/1.0 gcloud/0.9.62`: The request was made by the Google Cloud SDK CLI (gcloud). + `AppEngine-Google; (+http://code.google.com/appengine; appid: s~my-project`: The request was made from the `my-project` App Engine app.",
16121612
"type": "string"
16131613
},
16141614
"destinationAttributes": {
@@ -1690,6 +1690,10 @@
16901690
"description": "Describes a resource associated with this operation.",
16911691
"id": "ResourceInfo",
16921692
"properties": {
1693+
"permission": {
1694+
"description": "The resource permission required for this request.",
1695+
"type": "string"
1696+
},
16931697
"resourceContainer": {
16941698
"description": "The identifier of the parent of this resource instance. Must be in one of the following formats: - `projects/` - `folders/` - `organizations/`",
16951699
"type": "string"

‎googleapiclient/discovery_cache/documents/servicecontrol.v2.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
}
170170
}
171171
},
172-
"revision": "20220915",
172+
"revision": "20221014",
173173
"rootUrl": "https://servicecontrol.googleapis.com/",
174174
"schemas": {
175175
"Api": {
@@ -657,15 +657,15 @@
657657
"id": "RequestMetadata",
658658
"properties": {
659659
"callerIp": {
660-
"description": "The IP address of the caller. For caller from internet, this will be public IPv4 or IPv6 address. For caller from a Compute Engine VM with external IP address, this will be the VM's external IP address. For caller from a Compute Engine VM without external IP address, if the VM is in the same organization (or project) as the accessed resource, `caller_ip` will be the VM's internal IPv4 address, otherwise the `caller_ip` will be redacted to \"gce-internal-ip\". See https://cloud.google.com/compute/docs/vpc/ for more information.",
660+
"description": "The IP address of the caller. For a caller from the internet, this will be the public IPv4 or IPv6 address. For calls made from inside Google's internal production network from one GCP service to another, `caller_ip` will be redacted to \"private\". For a caller from a Compute Engine VM with a external IP address, `caller_ip` will be the VM's external IP address. For a caller from a Compute Engine VM without a external IP address, if the VM is in the same organization (or project) as the accessed resource, `caller_ip` will be the VM's internal IPv4 address, otherwise `caller_ip` will be redacted to \"gce-internal-ip\". See https://cloud.google.com/compute/docs/vpc/ for more information.",
661661
"type": "string"
662662
},
663663
"callerNetwork": {
664664
"description": "The network of the caller. Set only if the network host project is part of the same GCP organization (or project) as the accessed resource. See https://cloud.google.com/compute/docs/vpc/ for more information. This is a scheme-less URI full resource name. For example: \"//compute.googleapis.com/projects/PROJECT_ID/global/networks/NETWORK_ID\"",
665665
"type": "string"
666666
},
667667
"callerSuppliedUserAgent": {
668-
"description": "The user agent of the caller. This information is not authenticated and should be treated accordingly. For example: + `google-api-python-client/1.4.0`: The request was made by the Google API client for Python. + `Cloud SDK Command Line Tool apitools-client/1.0 gcloud/0.9.62`: The request was made by the Google Cloud SDK CLI (gcloud). + `AppEngine-Google; (+http://code.google.com/appengine; appid: s~my-project`: The request was made from the `my-project` App Engine app. NOLINT",
668+
"description": "The user agent of the caller. This information is not authenticated and should be treated accordingly. For example: + `google-api-python-client/1.4.0`: The request was made by the Google API client for Python. + `Cloud SDK Command Line Tool apitools-client/1.0 gcloud/0.9.62`: The request was made by the Google Cloud SDK CLI (gcloud). + `AppEngine-Google; (+http://code.google.com/appengine; appid: s~my-project`: The request was made from the `my-project` App Engine app.",
669669
"type": "string"
670670
},
671671
"destinationAttributes": {

0 commit comments

Comments
 (0)
Please sign in to comment.