Skip to content

Commit

Permalink
fix(cloudidentity): update the API
Browse files Browse the repository at this point in the history
#### cloudidentity:v1beta1

The following keys were changed:
- schemas.DynamicGroupQuery.properties.query.description

#### cloudidentity:v1

The following keys were changed:
- schemas.DynamicGroupQuery.properties.query.description
  • Loading branch information
yoshi-automation authored and sofisl committed Sep 23, 2021
1 parent 30c8c90 commit 4b022bc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions discovery/cloudidentity-v1.json
Expand Up @@ -1273,7 +1273,7 @@
}
}
},
"revision": "20210906",
"revision": "20210920",
"rootUrl": "https://cloudidentity.googleapis.com/",
"schemas": {
"CheckTransitiveMembershipResponse": {
Expand Down Expand Up @@ -1335,7 +1335,7 @@
"id": "DynamicGroupQuery",
"properties": {
"query": {
"description": "Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')`",
"description": "Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')` All users with any variation of the name John Doe (case-insensitive queries add `equalsIgnoreCase()` to the value being queried). `user.name.value.equalsIgnoreCase('jOhn DoE')`",
"type": "string"
},
"resourceType": {
Expand Down
4 changes: 2 additions & 2 deletions discovery/cloudidentity-v1beta1.json
Expand Up @@ -1336,7 +1336,7 @@
}
}
},
"revision": "20210906",
"revision": "20210920",
"rootUrl": "https://cloudidentity.googleapis.com/",
"schemas": {
"AndroidAttributes": {
Expand Down Expand Up @@ -1943,7 +1943,7 @@
"id": "DynamicGroupQuery",
"properties": {
"query": {
"description": "Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')`",
"description": "Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')` All users with any variation of the name John Doe (case-insensitive queries add `equalsIgnoreCase()` to the value being queried). `user.name.value.equalsIgnoreCase('jOhn DoE')`",
"type": "string"
},
"resourceType": {
Expand Down
2 changes: 1 addition & 1 deletion src/apis/cloudidentity/v1.ts
Expand Up @@ -170,7 +170,7 @@ export namespace cloudidentity_v1 {
*/
export interface Schema$DynamicGroupQuery {
/**
* Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')`
* Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')` All users with any variation of the name John Doe (case-insensitive queries add `equalsIgnoreCase()` to the value being queried). `user.name.value.equalsIgnoreCase('jOhn DoE')`
*/
query?: string | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/apis/cloudidentity/v1beta1.ts
Expand Up @@ -474,7 +474,7 @@ export namespace cloudidentity_v1beta1 {
*/
export interface Schema$DynamicGroupQuery {
/**
* Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')`
* Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')` All users with any variation of the name John Doe (case-insensitive queries add `equalsIgnoreCase()` to the value being queried). `user.name.value.equalsIgnoreCase('jOhn DoE')`
*/
query?: string | null;
resourceType?: string | null;
Expand Down

0 comments on commit 4b022bc

Please sign in to comment.