Skip to content

Commit

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

The following keys were added:
- resources.organizations.methods.get (Total Keys: 11)
- schemas.Organization (Total Keys: 4)
  • Loading branch information
yoshi-automation committed Apr 16, 2024
1 parent d3ac1a9 commit 86d330a
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 1 deletion.
23 changes: 23 additions & 0 deletions docs/dyn/marketingplatformadmin_v1alpha.organizations.html
Expand Up @@ -82,10 +82,33 @@ <h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
<p class="firstline">Lookup for a single organization.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>

<div class="method">
<code class="details" id="get">get(name, x__xgafv=None)</code>
<pre>Lookup for a single organization.

Args:
name: string, Required. The name of the Organization to retrieve. Format: organizations/{org_id} (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format

Returns:
An object of the form:

{ # A resource message representing a Google Marketing Platform organization.
&quot;displayName&quot;: &quot;A String&quot;, # The human-readable name for the organization.
&quot;name&quot;: &quot;A String&quot;, # Identifier. The resource name of the GMP organization. Format: organizations/{org_id}
}</pre>
</div>

</body></html>
Expand Up @@ -109,6 +109,34 @@
"protocol": "rest",
"resources": {
"organizations": {
"methods": {
"get": {
"description": "Lookup for a single organization.",
"flatPath": "v1alpha/organizations/{organizationsId}",
"httpMethod": "GET",
"id": "marketingplatformadmin.organizations.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the Organization to retrieve. Format: organizations/{org_id}",
"location": "path",
"pattern": "^organizations/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1alpha/{+name}",
"response": {
"$ref": "Organization"
},
"scopes": [
"https://www.googleapis.com/auth/marketingplatformadmin.analytics.read",
"https://www.googleapis.com/auth/marketingplatformadmin.analytics.update"
]
}
},
"resources": {
"analyticsAccountLinks": {
"methods": {
Expand Down Expand Up @@ -235,7 +263,7 @@
}
}
},
"revision": "20240408",
"revision": "20240415",
"rootUrl": "https://marketingplatformadmin.googleapis.com/",
"schemas": {
"AnalyticsAccountLink": {
Expand Down Expand Up @@ -297,6 +325,21 @@
},
"type": "object"
},
"Organization": {
"description": "A resource message representing a Google Marketing Platform organization.",
"id": "Organization",
"properties": {
"displayName": {
"description": "The human-readable name for the organization.",
"type": "string"
},
"name": {
"description": "Identifier. The resource name of the GMP organization. Format: organizations/{org_id}",
"type": "string"
}
},
"type": "object"
},
"SetPropertyServiceLevelRequest": {
"description": "Request message for SetPropertyServiceLevel RPC.",
"id": "SetPropertyServiceLevelRequest",
Expand Down

0 comments on commit 86d330a

Please sign in to comment.