Skip to content

Commit 1898032

Browse files
feat(playcustomapp): update the api
#### playcustomapp:v1 The following keys were added: - schemas.CustomApp.properties.organizations (Total Keys: 2) - schemas.Organization (Total Keys: 4)
1 parent 0368daf commit 1898032

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

docs/dyn/playcustomapp_v1.accounts.customApps.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ <h3>Method Details</h3>
9797

9898
{ # This resource represents a custom app.
9999
&quot;languageCode&quot;: &quot;A String&quot;, # Default listing language in BCP 47 format.
100+
&quot;organizations&quot;: [ # Organizations to which the custom app should be made available. If the request contains any organizations, then the app will be restricted to only these organizations. To support the organization linked to the developer account, the organization ID should be provided explicitly together with other organizations. If no organizations are provided, then the app is only available to the organization linked to the developer account.
101+
{ # Represents an organization that can access a custom app.
102+
&quot;organizationId&quot;: &quot;A String&quot;, # Required. ID of the organization.
103+
&quot;organizationName&quot;: &quot;A String&quot;, # Optional. A human-readable name of the organization, to help recognize the organization.
104+
},
105+
],
100106
&quot;packageName&quot;: &quot;A String&quot;, # Output only. Package name of the created Android app. Only present in the API response.
101107
&quot;title&quot;: &quot;A String&quot;, # Title for the Android app.
102108
}
@@ -113,6 +119,12 @@ <h3>Method Details</h3>
113119

114120
{ # This resource represents a custom app.
115121
&quot;languageCode&quot;: &quot;A String&quot;, # Default listing language in BCP 47 format.
122+
&quot;organizations&quot;: [ # Organizations to which the custom app should be made available. If the request contains any organizations, then the app will be restricted to only these organizations. To support the organization linked to the developer account, the organization ID should be provided explicitly together with other organizations. If no organizations are provided, then the app is only available to the organization linked to the developer account.
123+
{ # Represents an organization that can access a custom app.
124+
&quot;organizationId&quot;: &quot;A String&quot;, # Required. ID of the organization.
125+
&quot;organizationName&quot;: &quot;A String&quot;, # Optional. A human-readable name of the organization, to help recognize the organization.
126+
},
127+
],
116128
&quot;packageName&quot;: &quot;A String&quot;, # Output only. Package name of the created Android app. Only present in the API response.
117129
&quot;title&quot;: &quot;A String&quot;, # Title for the Android app.
118130
}</pre>

googleapiclient/discovery_cache/documents/playcustomapp.v1.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
}
159159
}
160160
},
161-
"revision": "20211015",
161+
"revision": "20211022",
162162
"rootUrl": "https://playcustomapp.googleapis.com/",
163163
"schemas": {
164164
"CustomApp": {
@@ -169,6 +169,13 @@
169169
"description": "Default listing language in BCP 47 format.",
170170
"type": "string"
171171
},
172+
"organizations": {
173+
"description": "Organizations to which the custom app should be made available. If the request contains any organizations, then the app will be restricted to only these organizations. To support the organization linked to the developer account, the organization ID should be provided explicitly together with other organizations. If no organizations are provided, then the app is only available to the organization linked to the developer account.",
174+
"items": {
175+
"$ref": "Organization"
176+
},
177+
"type": "array"
178+
},
172179
"packageName": {
173180
"description": "Output only. Package name of the created Android app. Only present in the API response.",
174181
"readOnly": true,
@@ -180,6 +187,21 @@
180187
}
181188
},
182189
"type": "object"
190+
},
191+
"Organization": {
192+
"description": "Represents an organization that can access a custom app.",
193+
"id": "Organization",
194+
"properties": {
195+
"organizationId": {
196+
"description": "Required. ID of the organization.",
197+
"type": "string"
198+
},
199+
"organizationName": {
200+
"description": "Optional. A human-readable name of the organization, to help recognize the organization.",
201+
"type": "string"
202+
}
203+
},
204+
"type": "object"
183205
}
184206
},
185207
"servicePath": "",

0 commit comments

Comments
 (0)