Skip to content

Commit

Permalink
feat(beyondcorp): update the api
Browse files Browse the repository at this point in the history
#### beyondcorp:v1alpha

The following keys were deleted:
- schemas.GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription.properties.seatCount.readOnly (Total Keys: 1)

The following keys were added:
- resources.organizations.resources.locations.resources.global.resources.partnerTenants.methods.list.parameters.filter (Total Keys: 2)
- resources.organizations.resources.locations.resources.global.resources.partnerTenants.methods.list.parameters.orderBy (Total Keys: 2)
- resources.organizations.resources.locations.resources.global.resources.partnerTenants.methods.list.parameters.pageSize (Total Keys: 3)
- resources.organizations.resources.locations.resources.global.resources.partnerTenants.methods.list.parameters.pageToken (Total Keys: 2)
- resources.organizations.resources.locations.resources.global.resources.partnerTenants.resources.proxyConfigs.methods.list.parameters.filter (Total Keys: 2)
- resources.organizations.resources.locations.resources.global.resources.partnerTenants.resources.proxyConfigs.methods.list.parameters.orderBy (Total Keys: 2)
- resources.organizations.resources.locations.resources.global.resources.partnerTenants.resources.proxyConfigs.methods.list.parameters.pageSize (Total Keys: 3)
- resources.organizations.resources.locations.resources.global.resources.partnerTenants.resources.proxyConfigs.methods.list.parameters.pageToken (Total Keys: 2)
- schemas.GoogleCloudBeyondcorpPartnerservicesV1alphaListPartnerTenantsResponse.properties.nextPageToken.type (Total Keys: 1)
- schemas.GoogleCloudBeyondcorpPartnerservicesV1alphaListProxyConfigsResponse.properties.nextPageToken.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Nov 7, 2023
1 parent 922850d commit 456e58a
Show file tree
Hide file tree
Showing 5 changed files with 105 additions and 12 deletions.
Expand Up @@ -100,8 +100,11 @@ <h2>Instance Methods</h2>
<code><a href="#getIamPolicy">getIamPolicy(resource, options_requestedPolicyVersion=None, x__xgafv=None)</a></code></p>
<p class="firstline">Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.</p>
<p class="toc_element">
<code><a href="#list">list(parent, x__xgafv=None)</a></code></p>
<code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists PartnerTenants in a given organization.</p>
<p class="toc_element">
<code><a href="#list_next">list_next()</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
<code><a href="#patch">patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)</a></code></p>
<p class="firstline">Updates a single PartnerTenant.</p>
Expand Down Expand Up @@ -286,11 +289,15 @@ <h3>Method Details</h3>
</div>

<div class="method">
<code class="details" id="list">list(parent, x__xgafv=None)</code>
<code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Lists PartnerTenants in a given organization.

Args:
parent: string, Required. The parent organization to which the PartnerTenants belong. Format: `organizations/{organization_id}/locations/global` (required)
filter: string, Optional. A filter specifying constraints of a list operation. All fields in the PartnerTenant message are supported. For example, the following query will return the PartnerTenants with displayName &quot;test-tenant&quot; organizations/${ORG_ID}/locations/${LOCATION}/partnerTenants?filter=displayName=&quot;test-tenant&quot; Nested fields are also supported. The follow query will return PartnerTenants with internal_tenant_id &quot;1234&quot; organizations/${ORG_ID}/locations/${LOCATION}/partnerTenants?filter=partnerMetadata.internalTenantId=&quot;1234&quot; For more information, please refer to https://google.aip.dev/160.
orderBy: string, Optional. Specifies the ordering of results. See [Sorting order](https://cloud.google.com/apis/design/design_patterns#sorting_order) for more information.
pageSize: integer, Optional. The maximum number of items to return. If not specified, a default value of 50 will be used by the service. Regardless of the page_size value, the response may include a partial list and a caller should only rely on response&#x27;s next_page_token to determine if there are more instances left to be queried.
pageToken: string, Optional. The next_page_token value returned from a previous ListPartnerTenantsResponse, if any.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
Expand All @@ -300,6 +307,7 @@ <h3>Method Details</h3>
An object of the form:

{ # Message for response to listing PartnerTenants.
&quot;nextPageToken&quot;: &quot;A String&quot;, # A token to retrieve the next page of results, or empty if there are no more results in the list.
&quot;partnerTenants&quot;: [ # The list of PartnerTenant objects.
{ # Information about a BeyoncCorp Enterprise PartnerTenant.
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Timestamp when the resource was created.
Expand All @@ -319,6 +327,20 @@ <h3>Method Details</h3>
}</pre>
</div>

<div class="method">
<code class="details" id="list_next">list_next()</code>
<pre>Retrieves the next page of results.

Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)

Returns:
A request object that you can call &#x27;execute()&#x27; on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>

<div class="method">
<code class="details" id="patch">patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)</code>
<pre>Updates a single PartnerTenant.
Expand Down
Expand Up @@ -90,8 +90,11 @@ <h2>Instance Methods</h2>
<code><a href="#getIamPolicy">getIamPolicy(resource, options_requestedPolicyVersion=None, x__xgafv=None)</a></code></p>
<p class="firstline">Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.</p>
<p class="toc_element">
<code><a href="#list">list(parent, x__xgafv=None)</a></code></p>
<code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists ProxyConfigs for PartnerTenant in a given organization.</p>
<p class="toc_element">
<code><a href="#list_next">list_next()</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
<code><a href="#patch">patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)</a></code></p>
<p class="firstline">Updates a single proxy config.</p>
Expand Down Expand Up @@ -284,11 +287,15 @@ <h3>Method Details</h3>
</div>

<div class="method">
<code class="details" id="list">list(parent, x__xgafv=None)</code>
<code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Lists ProxyConfigs for PartnerTenant in a given organization.

Args:
parent: string, Required. The parent organization to which the ProxyConfigs belong. Format: `organizations/{organization_id}/locations/global/partnerTenants/{partner_tenant_id}` (required)
filter: string, Optional. A filter specifying constraints of a list operation. All fields in the ProxyConfig message are supported. For example, the following query will return the ProxyConfigs with displayName &quot;test-config&quot; organizations/${ORG_ID}/locations/global/partnerTenants/${PARTNER_TENANT_ID}/proxyConfigs?filter=displayName=&quot;test-config&quot; Nested fields are also supported. The follow query will return ProxyConfigs with pacUri &quot;example.com/pac.pac&quot; organizations/${ORG_ID}/locations/global/partnerTenants/${PARTNER_TENANT_ID}/proxyConfigs?filter=routingInfo.pacUri=&quot;example.com/pac.pac&quot; For more information, please refer to https://google.aip.dev/160.
orderBy: string, Optional. Specifies the ordering of results. See [Sorting order](https://cloud.google.com/apis/design/design_patterns#sorting_order) for more information.
pageSize: integer, Optional. The maximum number of items to return. If not specified, a default value of 50 will be used by the service. Regardless of the page_size value, the response may include a partial list and a caller should only rely on response&#x27;s next_page_token to determine if there are more instances left to be queried.
pageToken: string, Optional. The next_page_token value returned from a previous ListProxyConfigsRequest, if any.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
Expand All @@ -298,6 +305,7 @@ <h3>Method Details</h3>
An object of the form:

{ # Message for response to listing ProxyConfigs.
&quot;nextPageToken&quot;: &quot;A String&quot;, # A token to retrieve the next page of results, or empty if there are no more results in the list.
&quot;proxyConfigs&quot;: [ # The list of ProxyConfig objects.
{ # Proxy Configuration of a PartnerTenant.
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Timestamp when the resource was created.
Expand All @@ -321,6 +329,20 @@ <h3>Method Details</h3>
}</pre>
</div>

<div class="method">
<code class="details" id="list_next">list_next()</code>
<pre>Retrieves the next page of results.

Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)

Returns:
A request object that you can call &#x27;execute()&#x27; on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>

<div class="method">
<code class="details" id="patch">patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)</code>
<pre>Updates a single proxy config.
Expand Down
Expand Up @@ -109,7 +109,7 @@ <h3>Method Details</h3>
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Create time of the subscription.
&quot;endTime&quot;: &quot;A String&quot;, # Output only. End time of the subscription.
&quot;name&quot;: &quot;A String&quot;, # Required. Unique resource name of the Subscription. The name is ignored when creating a subscription.
&quot;seatCount&quot;: &quot;A String&quot;, # Output only. Number of seats in the subscription.
&quot;seatCount&quot;: &quot;A String&quot;, # Optional. Number of seats in the subscription.
&quot;sku&quot;: &quot;A String&quot;, # Required. SKU of subscription.
&quot;startTime&quot;: &quot;A String&quot;, # Output only. Start time of the subscription.
&quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the subscription.
Expand All @@ -129,7 +129,7 @@ <h3>Method Details</h3>
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Create time of the subscription.
&quot;endTime&quot;: &quot;A String&quot;, # Output only. End time of the subscription.
&quot;name&quot;: &quot;A String&quot;, # Required. Unique resource name of the Subscription. The name is ignored when creating a subscription.
&quot;seatCount&quot;: &quot;A String&quot;, # Output only. Number of seats in the subscription.
&quot;seatCount&quot;: &quot;A String&quot;, # Optional. Number of seats in the subscription.
&quot;sku&quot;: &quot;A String&quot;, # Required. SKU of subscription.
&quot;startTime&quot;: &quot;A String&quot;, # Output only. Start time of the subscription.
&quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the subscription.
Expand All @@ -156,7 +156,7 @@ <h3>Method Details</h3>
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Create time of the subscription.
&quot;endTime&quot;: &quot;A String&quot;, # Output only. End time of the subscription.
&quot;name&quot;: &quot;A String&quot;, # Required. Unique resource name of the Subscription. The name is ignored when creating a subscription.
&quot;seatCount&quot;: &quot;A String&quot;, # Output only. Number of seats in the subscription.
&quot;seatCount&quot;: &quot;A String&quot;, # Optional. Number of seats in the subscription.
&quot;sku&quot;: &quot;A String&quot;, # Required. SKU of subscription.
&quot;startTime&quot;: &quot;A String&quot;, # Output only. Start time of the subscription.
&quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the subscription.
Expand Down Expand Up @@ -188,7 +188,7 @@ <h3>Method Details</h3>
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Create time of the subscription.
&quot;endTime&quot;: &quot;A String&quot;, # Output only. End time of the subscription.
&quot;name&quot;: &quot;A String&quot;, # Required. Unique resource name of the Subscription. The name is ignored when creating a subscription.
&quot;seatCount&quot;: &quot;A String&quot;, # Output only. Number of seats in the subscription.
&quot;seatCount&quot;: &quot;A String&quot;, # Optional. Number of seats in the subscription.
&quot;sku&quot;: &quot;A String&quot;, # Required. SKU of subscription.
&quot;startTime&quot;: &quot;A String&quot;, # Output only. Start time of the subscription.
&quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the subscription.
Expand Down
Expand Up @@ -1804,7 +1804,7 @@
}
}
},
"revision": "20231011",
"revision": "20231025",
"rootUrl": "https://beyondcorp.googleapis.com/",
"schemas": {
"AllocatedConnection": {
Expand Down
55 changes: 52 additions & 3 deletions googleapiclient/discovery_cache/documents/beyondcorp.v1alpha.json
Expand Up @@ -241,6 +241,27 @@
"parent"
],
"parameters": {
"filter": {
"description": "Optional. A filter specifying constraints of a list operation. All fields in the PartnerTenant message are supported. For example, the following query will return the PartnerTenants with displayName \"test-tenant\" organizations/${ORG_ID}/locations/${LOCATION}/partnerTenants?filter=displayName=\"test-tenant\" Nested fields are also supported. The follow query will return PartnerTenants with internal_tenant_id \"1234\" organizations/${ORG_ID}/locations/${LOCATION}/partnerTenants?filter=partnerMetadata.internalTenantId=\"1234\" For more information, please refer to https://google.aip.dev/160.",
"location": "query",
"type": "string"
},
"orderBy": {
"description": "Optional. Specifies the ordering of results. See [Sorting order](https://cloud.google.com/apis/design/design_patterns#sorting_order) for more information.",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Optional. The maximum number of items to return. If not specified, a default value of 50 will be used by the service. Regardless of the page_size value, the response may include a partial list and a caller should only rely on response's next_page_token to determine if there are more instances left to be queried.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. The next_page_token value returned from a previous ListPartnerTenantsResponse, if any.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The parent organization to which the PartnerTenants belong. Format: `organizations/{organization_id}/locations/global`",
"location": "path",
Expand Down Expand Up @@ -727,6 +748,27 @@
"parent"
],
"parameters": {
"filter": {
"description": "Optional. A filter specifying constraints of a list operation. All fields in the ProxyConfig message are supported. For example, the following query will return the ProxyConfigs with displayName \"test-config\" organizations/${ORG_ID}/locations/global/partnerTenants/${PARTNER_TENANT_ID}/proxyConfigs?filter=displayName=\"test-config\" Nested fields are also supported. The follow query will return ProxyConfigs with pacUri \"example.com/pac.pac\" organizations/${ORG_ID}/locations/global/partnerTenants/${PARTNER_TENANT_ID}/proxyConfigs?filter=routingInfo.pacUri=\"example.com/pac.pac\" For more information, please refer to https://google.aip.dev/160.",
"location": "query",
"type": "string"
},
"orderBy": {
"description": "Optional. Specifies the ordering of results. See [Sorting order](https://cloud.google.com/apis/design/design_patterns#sorting_order) for more information.",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Optional. The maximum number of items to return. If not specified, a default value of 50 will be used by the service. Regardless of the page_size value, the response may include a partial list and a caller should only rely on response's next_page_token to determine if there are more instances left to be queried.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. The next_page_token value returned from a previous ListProxyConfigsRequest, if any.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The parent organization to which the ProxyConfigs belong. Format: `organizations/{organization_id}/locations/global/partnerTenants/{partner_tenant_id}`",
"location": "path",
Expand Down Expand Up @@ -3674,7 +3716,7 @@
}
}
},
"revision": "20231011",
"revision": "20231025",
"rootUrl": "https://beyondcorp.googleapis.com/",
"schemas": {
"AllocatedConnection": {
Expand Down Expand Up @@ -5117,6 +5159,10 @@
"description": "Message for response to listing PartnerTenants.",
"id": "GoogleCloudBeyondcorpPartnerservicesV1alphaListPartnerTenantsResponse",
"properties": {
"nextPageToken": {
"description": "A token to retrieve the next page of results, or empty if there are no more results in the list.",
"type": "string"
},
"partnerTenants": {
"description": "The list of PartnerTenant objects.",
"items": {
Expand All @@ -5131,6 +5177,10 @@
"description": "Message for response to listing ProxyConfigs.",
"id": "GoogleCloudBeyondcorpPartnerservicesV1alphaListProxyConfigsResponse",
"properties": {
"nextPageToken": {
"description": "A token to retrieve the next page of results, or empty if there are no more results in the list.",
"type": "string"
},
"proxyConfigs": {
"description": "The list of ProxyConfig objects.",
"items": {
Expand Down Expand Up @@ -5707,9 +5757,8 @@
"type": "string"
},
"seatCount": {
"description": "Output only. Number of seats in the subscription.",
"description": "Optional. Number of seats in the subscription.",
"format": "int64",
"readOnly": true,
"type": "string"
},
"sku": {
Expand Down

0 comments on commit 456e58a

Please sign in to comment.