Skip to content

Commit

Permalink
Merge branch 'main' into owl-bot-copy-packages-google-cloud-aiplatform
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl authored Aug 29, 2024
2 parents 535cd32 + b03f419 commit 9c41fc4
Show file tree
Hide file tree
Showing 10 changed files with 452 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@types/sinon": "^17.0.0",
"c8": "^9.0.0",
"gts": "^5.0.0",
"gapic-tools": "0.4.4",
"gapic-tools": "0.4.5",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,12 @@ message Assessment {
// protection need to be enabled.
PhoneFraudAssessment phone_fraud_assessment = 12
[(google.api.field_behavior) = OUTPUT_ONLY];

// Optional. The environment creating the assessment. This describes your
// environment (the system invoking CreateAssessment), NOT the environment of
// your user.
AssessmentEnvironment assessment_environment = 14
[(google.api.field_behavior) = OPTIONAL];
}

// The event being assessed.
Expand Down Expand Up @@ -2046,6 +2052,22 @@ message WafSettings {
WafFeature waf_feature = 2 [(google.api.field_behavior) = REQUIRED];
}

// The environment creating the assessment. This describes your environment
// (the system invoking CreateAssessment), NOT the environment of your user.
message AssessmentEnvironment {
// Optional. Identifies the client module initiating the CreateAssessment
// request. This can be the link to the client module's project. Examples
// include:
// - "github.com/GoogleCloudPlatform/recaptcha-enterprise-google-tag-manager"
// - "cloud.google.com/recaptcha/docs/implement-waf-akamai"
// - "cloud.google.com/recaptcha/docs/implement-waf-cloudflare"
// - "wordpress.org/plugins/recaptcha-something"
string client = 1 [(google.api.field_behavior) = OPTIONAL];

// Optional. The version of the client module. For example, "1.0.0".
string version = 2 [(google.api.field_behavior) = OPTIONAL];
}

// Information about the IP or IP range override.
message IpOverrideData {
// Enum that represents the type of IP override.
Expand Down
109 changes: 109 additions & 0 deletions packages/google-cloud-recaptchaenterprise/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9c41fc4

Please sign in to comment.