Skip to content

Commit

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

The following keys were added:
- schemas.GoogleAnalyticsAdminV1alphaProperty.properties.account.description
- schemas.GoogleAnalyticsAdminV1alphaProperty.properties.account.type

The following keys were changed:
- schemas.GoogleAnalyticsAdminV1alphaUserLink.properties.directRoles.description
  • Loading branch information
yoshi-automation authored and sofisl committed Sep 23, 2021
1 parent 99d8f4e commit e224f2f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
8 changes: 6 additions & 2 deletions discovery/analyticsadmin-v1alpha.json
Expand Up @@ -3152,7 +3152,7 @@
}
}
},
"revision": "20210831",
"revision": "20210922",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1alphaAccount": {
Expand Down Expand Up @@ -4464,6 +4464,10 @@
"description": "A resource message representing a Google Analytics GA4 property.",
"id": "GoogleAnalyticsAdminV1alphaProperty",
"properties": {
"account": {
"description": "Immutable. The resource name of the parent account Format: accounts/{account_id} Example: \"accounts/123\"",
"type": "string"
},
"createTime": {
"description": "Output only. Time when the entity was originally created.",
"format": "google-datetime",
Expand Down Expand Up @@ -4759,7 +4763,7 @@
"id": "GoogleAnalyticsAdminV1alphaUserLink",
"properties": {
"directRoles": {
"description": "Roles directly assigned to this user for this account or property. Valid values: predefinedRoles/read predefinedRoles/collaborate predefinedRoles/edit predefinedRoles/manage-users Excludes roles that are inherited from a higher-level entity, group, or organization admin role. A UserLink that is updated to have an empty list of direct_roles will be deleted.",
"description": "Roles directly assigned to this user for this account or property. Valid values: predefinedRoles/read predefinedRoles/collaborate predefinedRoles/edit predefinedRoles/admin Excludes roles that are inherited from a higher-level entity, group, or organization admin role. A UserLink that is updated to have an empty list of direct_roles will be deleted.",
"items": {
"type": "string"
},
Expand Down
12 changes: 11 additions & 1 deletion src/apis/analyticsadmin/v1alpha.ts
Expand Up @@ -1069,6 +1069,10 @@ export namespace analyticsadmin_v1alpha {
* A resource message representing a Google Analytics GA4 property.
*/
export interface Schema$GoogleAnalyticsAdminV1alphaProperty {
/**
* Immutable. The resource name of the parent account Format: accounts/{account_id\} Example: "accounts/123"
*/
account?: string | null;
/**
* Output only. Time when the entity was originally created.
*/
Expand Down Expand Up @@ -1213,7 +1217,7 @@ export namespace analyticsadmin_v1alpha {
*/
export interface Schema$GoogleAnalyticsAdminV1alphaUserLink {
/**
* Roles directly assigned to this user for this account or property. Valid values: predefinedRoles/read predefinedRoles/collaborate predefinedRoles/edit predefinedRoles/manage-users Excludes roles that are inherited from a higher-level entity, group, or organization admin role. A UserLink that is updated to have an empty list of direct_roles will be deleted.
* Roles directly assigned to this user for this account or property. Valid values: predefinedRoles/read predefinedRoles/collaborate predefinedRoles/edit predefinedRoles/admin Excludes roles that are inherited from a higher-level entity, group, or organization admin role. A UserLink that is updated to have an empty list of direct_roles will be deleted.
*/
directRoles?: string[] | null;
/**
Expand Down Expand Up @@ -4162,6 +4166,7 @@ export namespace analyticsadmin_v1alpha {
* requestBody: {
* // request body parameters
* // {
* // "account": "my_account",
* // "createTime": "my_createTime",
* // "currencyCode": "my_currencyCode",
* // "deleteTime": "my_deleteTime",
Expand All @@ -4180,6 +4185,7 @@ export namespace analyticsadmin_v1alpha {
*
* // Example response
* // {
* // "account": "my_account",
* // "createTime": "my_createTime",
* // "currencyCode": "my_currencyCode",
* // "deleteTime": "my_deleteTime",
Expand Down Expand Up @@ -4329,6 +4335,7 @@ export namespace analyticsadmin_v1alpha {
*
* // Example response
* // {
* // "account": "my_account",
* // "createTime": "my_createTime",
* // "currencyCode": "my_currencyCode",
* // "deleteTime": "my_deleteTime",
Expand Down Expand Up @@ -4478,6 +4485,7 @@ export namespace analyticsadmin_v1alpha {
*
* // Example response
* // {
* // "account": "my_account",
* // "createTime": "my_createTime",
* // "currencyCode": "my_currencyCode",
* // "deleteTime": "my_deleteTime",
Expand Down Expand Up @@ -5055,6 +5063,7 @@ export namespace analyticsadmin_v1alpha {
* requestBody: {
* // request body parameters
* // {
* // "account": "my_account",
* // "createTime": "my_createTime",
* // "currencyCode": "my_currencyCode",
* // "deleteTime": "my_deleteTime",
Expand All @@ -5073,6 +5082,7 @@ export namespace analyticsadmin_v1alpha {
*
* // Example response
* // {
* // "account": "my_account",
* // "createTime": "my_createTime",
* // "currencyCode": "my_currencyCode",
* // "deleteTime": "my_deleteTime",
Expand Down

0 comments on commit e224f2f

Please sign in to comment.