Skip to content

Commit

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

The following keys were changed:
- schemas.NamespacedDebugInput.properties.disableAutomaticEnrollmentSelection.description
- schemas.NamespacedDebugInput.properties.disableManualEnrollmentSelection.description
- schemas.NamespacedDebugInput.properties.disableOrganicSelection.description
- schemas.NamespacedDebugInput.properties.testingMode.description
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 2, 2023
1 parent 7607c9f commit d26f462
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions discovery/jobs-v4.json
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@
}
}
},
"revision": "20221026",
"revision": "20230120",
"rootUrl": "https://jobs.googleapis.com/",
"schemas": {
"ApplicationInfo": {
Expand Down Expand Up @@ -2519,7 +2519,7 @@
"type": "array"
},
"disableAutomaticEnrollmentSelection": {
"description": "If true, disable automatic enrollment selection (at all diversion points). Automatic enrollment selection means experiment selection process based on the experiment's automatic enrollment condition. This does not disable selection of forced experiments. Setting this filed to false does not change anything in experiment selection process.",
"description": "If true, disable automatic enrollment selection (at all diversion points). Automatic enrollment selection means experiment selection process based on the experiment's automatic enrollment condition. This does not disable selection of forced experiments. Setting this field to false does not change anything in the experiment selection process.",
"type": "boolean"
},
"disableExpNames": {
Expand All @@ -2545,11 +2545,11 @@
"type": "array"
},
"disableManualEnrollmentSelection": {
"description": "If true, disable manual enrollment selection (at all diversion points). Manual enrollment selection means experiment selection process based on the request's manual enrollment states (a.k.a. opt-in experiments). This does not disable selection of forced experiments. Setting this filed to false does not change anything in experiment selection process.",
"description": "If true, disable manual enrollment selection (at all diversion points). Manual enrollment selection means experiment selection process based on the request's manual enrollment states (a.k.a. opt-in experiments). This does not disable selection of forced experiments. Setting this field to false does not change anything in the experiment selection process.",
"type": "boolean"
},
"disableOrganicSelection": {
"description": "If true, disable organic experiment selection (at all diversion points). Organic selection means experiment selection process based on traffic allocation and diversion condition evaluation. This does not disable selection of forced experiments. This is useful in cases when it is not known whether experiment selection behavior is responsible for a error or breakage. Disabling organic selection may help to isolate the cause of a given problem. Setting this filed to false does not change anything in experiment selection process.",
"description": "If true, disable organic experiment selection (at all diversion points). Organic selection means experiment selection process based on traffic allocation and diversion condition evaluation. This does not disable selection of forced experiments. This is useful in cases when it is not known whether experiment selection behavior is responsible for a error or breakage. Disabling organic selection may help to isolate the cause of a given problem. Setting this field to false does not change anything in the experiment selection process.",
"type": "boolean"
},
"forcedFlags": {
Expand All @@ -2567,7 +2567,7 @@
"type": "object"
},
"testingMode": {
"description": "If set to ALL_OFF, organic selection will be disabled; if set to ALL_ON, organic selection will be disabled, and only select launch experiments will receive traffic. See go/mendel-aoao-runtime-design.",
"description": "Sets different testing modes. See the documentation in the TestingMode message for more information.",
"enum": [
"TESTING_MODE_UNSPECIFIED",
"TESTING_MODE_ALL_OFF",
Expand Down
8 changes: 4 additions & 4 deletions src/apis/jobs/v4.ts
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ export namespace jobs_v4 {
*/
conditionallyForcedExpTags?: string[] | null;
/**
* If true, disable automatic enrollment selection (at all diversion points). Automatic enrollment selection means experiment selection process based on the experiment's automatic enrollment condition. This does not disable selection of forced experiments. Setting this filed to false does not change anything in experiment selection process.
* If true, disable automatic enrollment selection (at all diversion points). Automatic enrollment selection means experiment selection process based on the experiment's automatic enrollment condition. This does not disable selection of forced experiments. Setting this field to false does not change anything in the experiment selection process.
*/
disableAutomaticEnrollmentSelection?: boolean | null;
/**
Expand All @@ -983,11 +983,11 @@ export namespace jobs_v4 {
*/
disableExpTags?: string[] | null;
/**
* If true, disable manual enrollment selection (at all diversion points). Manual enrollment selection means experiment selection process based on the request's manual enrollment states (a.k.a. opt-in experiments). This does not disable selection of forced experiments. Setting this filed to false does not change anything in experiment selection process.
* If true, disable manual enrollment selection (at all diversion points). Manual enrollment selection means experiment selection process based on the request's manual enrollment states (a.k.a. opt-in experiments). This does not disable selection of forced experiments. Setting this field to false does not change anything in the experiment selection process.
*/
disableManualEnrollmentSelection?: boolean | null;
/**
* If true, disable organic experiment selection (at all diversion points). Organic selection means experiment selection process based on traffic allocation and diversion condition evaluation. This does not disable selection of forced experiments. This is useful in cases when it is not known whether experiment selection behavior is responsible for a error or breakage. Disabling organic selection may help to isolate the cause of a given problem. Setting this filed to false does not change anything in experiment selection process.
* If true, disable organic experiment selection (at all diversion points). Organic selection means experiment selection process based on traffic allocation and diversion condition evaluation. This does not disable selection of forced experiments. This is useful in cases when it is not known whether experiment selection behavior is responsible for a error or breakage. Disabling organic selection may help to isolate the cause of a given problem. Setting this field to false does not change anything in the experiment selection process.
*/
disableOrganicSelection?: boolean | null;
/**
Expand All @@ -999,7 +999,7 @@ export namespace jobs_v4 {
*/
forcedRollouts?: {[key: string]: boolean} | null;
/**
* If set to ALL_OFF, organic selection will be disabled; if set to ALL_ON, organic selection will be disabled, and only select launch experiments will receive traffic. See go/mendel-aoao-runtime-design.
* Sets different testing modes. See the documentation in the TestingMode message for more information.
*/
testingMode?: string | null;
}
Expand Down

0 comments on commit d26f462

Please sign in to comment.