Skip to content

Commit

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

The following keys were added:
- resources.customers.methods.listLegacyOrganizations (Total Keys: 7)
- schemas.SasPortalListLegacyOrganizationsResponse (Total Keys: 5)
  • Loading branch information
yoshi-automation committed Jan 4, 2024
1 parent 90b5f16 commit cae8401
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
23 changes: 23 additions & 0 deletions docs/dyn/prod_tt_sasportal_v1alpha1.customers.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ <h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#list">list(pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Returns a list of requested customers.</p>
<p class="toc_element">
<code><a href="#listLegacyOrganizations">listLegacyOrganizations(x__xgafv=None)</a></code></p>
<p class="firstline">Checks whether account is legacy.</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>
Expand Down Expand Up @@ -192,6 +195,26 @@ <h3>Method Details</h3>
}</pre>
</div>

<div class="method">
<code class="details" id="listLegacyOrganizations">listLegacyOrganizations(x__xgafv=None)</code>
<pre>Checks whether account is legacy.

Args:
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format

Returns:
An object of the form:

{ # Response for [ListLegacyOrganizations]. [spectrum.sas.portal.v1alpha1.Provisioning.ListLegacyOrganizations].
&quot;organizationIds&quot;: [ # Optional. IDs of legacy SAS organizations.
&quot;A String&quot;,
],
}</pre>
</div>

<div class="method">
<code class="details" id="list_next">list_next()</code>
<pre>Retrieves the next page of results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,22 @@
"https://www.googleapis.com/auth/sasportal"
]
},
"listLegacyOrganizations": {
"description": "Checks whether account is legacy.",
"flatPath": "v1alpha1/customers:listLegacyOrganizations",
"httpMethod": "GET",
"id": "prod_tt_sasportal.customers.listLegacyOrganizations",
"parameterOrder": [],
"parameters": {},
"path": "v1alpha1/customers:listLegacyOrganizations",
"response": {
"$ref": "SasPortalListLegacyOrganizationsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/sasportal"
]
},
"migrateOrganization": {
"description": "Migrates a SAS organization to the cloud. This will create GCP projects for each deployment and associate them. The SAS Organization is linked to the gcp project that called the command. go/sas-legacy-customer-migration",
"flatPath": "v1alpha1/customers:migrateOrganization",
Expand Down Expand Up @@ -2637,7 +2653,7 @@
}
}
},
"revision": "20231205",
"revision": "20240102",
"rootUrl": "https://prod-tt-sasportal.googleapis.com/",
"schemas": {
"SasPortalAssignment": {
Expand Down Expand Up @@ -3298,6 +3314,21 @@
},
"type": "object"
},
"SasPortalListLegacyOrganizationsResponse": {
"description": "Response for [ListLegacyOrganizations]. [spectrum.sas.portal.v1alpha1.Provisioning.ListLegacyOrganizations].",
"id": "SasPortalListLegacyOrganizationsResponse",
"properties": {
"organizationIds": {
"description": "Optional. IDs of legacy SAS organizations.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"SasPortalListNodesResponse": {
"description": "Response for ListNodes.",
"id": "SasPortalListNodesResponse",
Expand Down

0 comments on commit cae8401

Please sign in to comment.