Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 02cfcfd

Browse files
committedFeb 7, 2023
feat(servicecontrol): update the api
#### servicecontrol:v1 The following keys were added: - schemas.CheckResponse.properties.esfMigrationServerOverride.$ref (Total Keys: 1) - schemas.EsfMigrationServerOverride (Total Keys: 3)
1 parent 2b80c10 commit 02cfcfd

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed
 

‎docs/dyn/servicecontrol_v1.services.html

+3
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,9 @@ <h3>Method Details</h3>
481481
&quot;A String&quot;,
482482
],
483483
},
484+
&quot;esfMigrationServerOverride&quot;: { # Esf migration server override during chemist check v2 migration # Esf migration server override during check v2 migration. This is temporary and Chemist internal only.
485+
&quot;overrideMode&quot;: &quot;A String&quot;, # Esf migration override mode
486+
},
484487
&quot;operationId&quot;: &quot;A String&quot;, # The same operation_id value used in the CheckRequest. Used for logging and diagnostics purposes.
485488
&quot;quotaInfo&quot;: { # Contains the quota information for a quota check response. # Quota information for the check request associated with this response.
486489
&quot;limitExceeded&quot;: [ # Quota Metrics that have exceeded quota limits. For QuotaGroup-based quota, this is QuotaGroup.name For QuotaLimit-based quota, this is QuotaLimit.name See: google.api.Quota Deprecated: Use quota_metrics to get per quota group limit exceeded status.

‎googleapiclient/discovery_cache/documents/servicecontrol.v1.json

+26-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
}
198198
}
199199
},
200-
"revision": "20230109",
200+
"revision": "20230127",
201201
"rootUrl": "https://servicecontrol.googleapis.com/",
202202
"schemas": {
203203
"AllocateInfo": {
@@ -646,6 +646,10 @@
646646
"$ref": "CheckInfo",
647647
"description": "Feedback data returned from the server during processing a Check request."
648648
},
649+
"esfMigrationServerOverride": {
650+
"$ref": "EsfMigrationServerOverride",
651+
"description": "Esf migration server override during check v2 migration. This is temporary and Chemist internal only."
652+
},
649653
"operationId": {
650654
"description": "The same operation_id value used in the CheckRequest. Used for logging and diagnostics purposes.",
651655
"type": "string"
@@ -759,6 +763,27 @@
759763
},
760764
"type": "object"
761765
},
766+
"EsfMigrationServerOverride": {
767+
"description": "Esf migration server override during chemist check v2 migration",
768+
"id": "EsfMigrationServerOverride",
769+
"properties": {
770+
"overrideMode": {
771+
"description": "Esf migration override mode",
772+
"enum": [
773+
"ESF_MIGRATION_OVERRIDE_MODE_UNSPECIFIED",
774+
"DRY_RUN",
775+
"NO_OVERRIDE"
776+
],
777+
"enumDescriptions": [
778+
"Default, ESF should use the mode that is determined by the configuration.",
779+
"ESF should send 95% v1 request and 5% dry run request.",
780+
"Same as ESF_MIGRATION_OVERRIDE_MODE_UNSPECIFIED, remove the override mode. This is used for safe unpush."
781+
],
782+
"type": "string"
783+
}
784+
},
785+
"type": "object"
786+
},
762787
"Exemplar": {
763788
"description": "Exemplars are example points that may be used to annotate aggregated distribution values. They are metadata that gives information about a particular value added to a Distribution bucket, such as a trace ID that was active when a value was added. They may contain further information, such as a example values and timestamps, origin, etc.",
764789
"id": "Exemplar",

‎googleapiclient/discovery_cache/documents/servicecontrol.v2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
}
170170
}
171171
},
172-
"revision": "20230109",
172+
"revision": "20230124",
173173
"rootUrl": "https://servicecontrol.googleapis.com/",
174174
"schemas": {
175175
"Api": {

0 commit comments

Comments
 (0)
Please sign in to comment.