You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Whether or not the release was available for version pinning.",
476
476
"type": "boolean"
477
477
},
478
+
"rolloutData": {
479
+
"description": "Rollout-related metadata. Some releases are part of one or more A/B rollouts. This field contains the names and data describing this release's role in any rollouts.",
480
+
"items": {
481
+
"$ref": "RolloutData"
482
+
},
483
+
"type": "array"
484
+
},
478
485
"serving": {
479
486
"$ref": "Interval",
480
487
"description": "Timestamp interval of when the release was live. If end_time is unspecified, the release is currently live."
@@ -486,6 +493,24 @@
486
493
},
487
494
"type": "object"
488
495
},
496
+
"RolloutData": {
497
+
"description": "Rollout-related metadata for a release.",
498
+
"id": "RolloutData",
499
+
"properties": {
500
+
"rolloutName": {
501
+
"description": "The name of the rollout.",
502
+
"type": "string"
503
+
},
504
+
"tag": {
505
+
"description": "Tags associated with a release's role in a rollout. Most rollouts will have at least one release with a \"rollout\" tag and another release with a \"control\" tag. Some rollouts may have additional named arms.",
506
+
"items": {
507
+
"type": "string"
508
+
},
509
+
"type": "array"
510
+
}
511
+
},
512
+
"type": "object"
513
+
},
489
514
"Version": {
490
515
"description": "Each Version is owned by a Channel. A Version only displays the Version number (e.g. 84.0.4147.38). A Version owns a collection of releases.",
* Whether or not the release was available for version pinning.
236
236
*/
237
237
pinnable?: boolean|null;
238
+
/**
239
+
* Rollout-related metadata. Some releases are part of one or more A/B rollouts. This field contains the names and data describing this release's role in any rollouts.
240
+
*/
241
+
rolloutData?: Schema$RolloutData[];
238
242
/**
239
243
* Timestamp interval of when the release was live. If end_time is unspecified, the release is currently live.
* Tags associated with a release's role in a rollout. Most rollouts will have at least one release with a "rollout" tag and another release with a "control" tag. Some rollouts may have additional named arms.
261
+
*/
262
+
tag?: string[]|null;
263
+
}
247
264
/**
248
265
* Each Version is owned by a Channel. A Version only displays the Version number (e.g. 84.0.4147.38). A Version owns a collection of releases.
0 commit comments