Skip to content

Commit

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

The following keys were added:
- schemas.GoogleCloudRecaptchaenterpriseV1RelatedAccountGroupMembership.properties.accountId.type (Total Keys: 1)
- schemas.GoogleCloudRecaptchaenterpriseV1RelatedAccountGroupMembership.properties.hashedAccountId.deprecated (Total Keys: 1)
- schemas.GoogleCloudRecaptchaenterpriseV1SearchRelatedAccountGroupMembershipsRequest.properties.accountId.type (Total Keys: 1)
- schemas.GoogleCloudRecaptchaenterpriseV1SearchRelatedAccountGroupMembershipsRequest.properties.hashedAccountId.deprecated (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Dec 7, 2023
1 parent c70de23 commit cd7d287
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
Expand Up @@ -99,7 +99,8 @@ <h3>Method Details</h3>
The object takes the form of:

{ # The request message to search related account group memberships.
&quot;hashedAccountId&quot;: &quot;A String&quot;, # Optional. The unique stable hashed user identifier used to search connections. The identifier should correspond to a `hashed_account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.
&quot;accountId&quot;: &quot;A String&quot;, # Optional. The unique stable account identifier used to search connections. The identifier should correspond to an `account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call. Either hashed_account_id or account_id must be set, but not both.
&quot;hashedAccountId&quot;: &quot;A String&quot;, # Optional. Deprecated: use `account_id` instead. The unique stable hashed account identifier used to search connections. The identifier should correspond to a `hashed_account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call. Either hashed_account_id or account_id must be set, but not both.
&quot;pageSize&quot;: 42, # Optional. The maximum number of groups to return. The service might return fewer than this value. If unspecified, at most 50 groups are returned. The maximum value is 1000; values above 1000 are coerced to 1000.
&quot;pageToken&quot;: &quot;A String&quot;, # Optional. A page token, received from a previous `SearchRelatedAccountGroupMemberships` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `SearchRelatedAccountGroupMemberships` must match the call that provided the page token.
}
Expand All @@ -116,7 +117,8 @@ <h3>Method Details</h3>
&quot;nextPageToken&quot;: &quot;A String&quot;, # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
&quot;relatedAccountGroupMemberships&quot;: [ # The queried memberships.
{ # A membership in a group of related accounts.
&quot;hashedAccountId&quot;: &quot;A String&quot;, # The unique stable hashed user identifier of the member. The identifier corresponds to a `hashed_account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.
&quot;accountId&quot;: &quot;A String&quot;, # The unique stable account identifier of the member. The identifier corresponds to an `account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.
&quot;hashedAccountId&quot;: &quot;A String&quot;, # Deprecated: use `account_id` instead. The unique stable hashed account identifier of the member. The identifier corresponds to a `hashed_account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.
&quot;name&quot;: &quot;A String&quot;, # Required. Identifier. The resource name for this membership in the format `projects/{project}/relatedaccountgroups/{relatedaccountgroup}/memberships/{membership}`.
},
],
Expand Down
Expand Up @@ -109,7 +109,8 @@ <h3>Method Details</h3>
&quot;nextPageToken&quot;: &quot;A String&quot;, # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
&quot;relatedAccountGroupMemberships&quot;: [ # The memberships listed by the query.
{ # A membership in a group of related accounts.
&quot;hashedAccountId&quot;: &quot;A String&quot;, # The unique stable hashed user identifier of the member. The identifier corresponds to a `hashed_account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.
&quot;accountId&quot;: &quot;A String&quot;, # The unique stable account identifier of the member. The identifier corresponds to an `account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.
&quot;hashedAccountId&quot;: &quot;A String&quot;, # Deprecated: use `account_id` instead. The unique stable hashed account identifier of the member. The identifier corresponds to a `hashed_account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.
&quot;name&quot;: &quot;A String&quot;, # Required. Identifier. The resource name for this membership in the format `projects/{project}/relatedaccountgroups/{relatedaccountgroup}/memberships/{membership}`.
},
],
Expand Down
Expand Up @@ -666,7 +666,7 @@
}
}
},
"revision": "20231112",
"revision": "20231202",
"rootUrl": "https://recaptchaenterprise.googleapis.com/",
"schemas": {
"GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessment": {
Expand Down Expand Up @@ -1537,8 +1537,13 @@
"description": "A membership in a group of related accounts.",
"id": "GoogleCloudRecaptchaenterpriseV1RelatedAccountGroupMembership",
"properties": {
"accountId": {
"description": "The unique stable account identifier of the member. The identifier corresponds to an `account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.",
"type": "string"
},
"hashedAccountId": {
"description": "The unique stable hashed user identifier of the member. The identifier corresponds to a `hashed_account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.",
"deprecated": true,
"description": "Deprecated: use `account_id` instead. The unique stable hashed account identifier of the member. The identifier corresponds to a `hashed_account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.",
"format": "byte",
"type": "string"
},
Expand Down Expand Up @@ -1646,8 +1651,13 @@
"description": "The request message to search related account group memberships.",
"id": "GoogleCloudRecaptchaenterpriseV1SearchRelatedAccountGroupMembershipsRequest",
"properties": {
"accountId": {
"description": "Optional. The unique stable account identifier used to search connections. The identifier should correspond to an `account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call. Either hashed_account_id or account_id must be set, but not both.",
"type": "string"
},
"hashedAccountId": {
"description": "Optional. The unique stable hashed user identifier used to search connections. The identifier should correspond to a `hashed_account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call.",
"deprecated": true,
"description": "Optional. Deprecated: use `account_id` instead. The unique stable hashed account identifier used to search connections. The identifier should correspond to a `hashed_account_id` provided in a previous `CreateAssessment` or `AnnotateAssessment` call. Either hashed_account_id or account_id must be set, but not both.",
"format": "byte",
"type": "string"
},
Expand Down

0 comments on commit cd7d287

Please sign in to comment.