Skip to content

Commit e18b504

Browse files
feat(all): auto-regenerate discovery clients (#1753)
1 parent dd565a4 commit e18b504

24 files changed

+9593
-3112
lines changed

composer/v1beta1/composer-api.json

+39-1
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@
518518
}
519519
}
520520
},
521-
"revision": "20221104",
521+
"revision": "20221114",
522522
"rootUrl": "https://composer.googleapis.com/",
523523
"schemas": {
524524
"AllowedIpRange": {
@@ -789,6 +789,10 @@
789789
"$ref": "PrivateEnvironmentConfig",
790790
"description": "The configuration used for the Private IP Cloud Composer environment."
791791
},
792+
"recoveryConfig": {
793+
"$ref": "RecoveryConfig",
794+
"description": "Optional. The Recovery settings configuration of an environment. This field is supported for Cloud Composer environments in versions composer-2.*.*-airflow-*.*.* and newer."
795+
},
792796
"softwareConfig": {
793797
"$ref": "SoftwareConfig",
794798
"description": "The configuration settings for software inside the environment."
@@ -1321,6 +1325,17 @@
13211325
},
13221326
"type": "object"
13231327
},
1328+
"RecoveryConfig": {
1329+
"description": "The Recovery settings of an environment.",
1330+
"id": "RecoveryConfig",
1331+
"properties": {
1332+
"scheduledSnapshotsConfig": {
1333+
"$ref": "ScheduledSnapshotsConfig",
1334+
"description": "Optional. The configuration for scheduled snapshot creation mechanism."
1335+
}
1336+
},
1337+
"type": "object"
1338+
},
13241339
"RestartWebServerRequest": {
13251340
"description": "Restart Airflow web server.",
13261341
"id": "RestartWebServerRequest",
@@ -1349,6 +1364,29 @@
13491364
},
13501365
"type": "object"
13511366
},
1367+
"ScheduledSnapshotsConfig": {
1368+
"description": "The configuration for scheduled snapshot creation mechanism.",
1369+
"id": "ScheduledSnapshotsConfig",
1370+
"properties": {
1371+
"enabled": {
1372+
"description": "Optional. Whether scheduled snapshots creation is enabled.",
1373+
"type": "boolean"
1374+
},
1375+
"snapshotCreationSchedule": {
1376+
"description": "Optional. The cron expression representing the time when snapshots creation mechanism runs. This field is subject to additional validation around frequency of execution.",
1377+
"type": "string"
1378+
},
1379+
"snapshotLocation": {
1380+
"description": "Optional. The Cloud Storage location for storing automatically created snapshots.",
1381+
"type": "string"
1382+
},
1383+
"timeZone": {
1384+
"description": "Optional. Time zone that sets the context to interpret snapshot_creation_schedule.",
1385+
"type": "string"
1386+
}
1387+
},
1388+
"type": "object"
1389+
},
13521390
"SchedulerResource": {
13531391
"description": "Configuration for resources used by Airflow schedulers.",
13541392
"id": "SchedulerResource",

composer/v1beta1/composer-gen.go

+78
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

container/v1/container-api.json

+21-2
Original file line numberDiff line numberDiff line change
@@ -2487,7 +2487,7 @@
24872487
}
24882488
}
24892489
},
2490-
"revision": "20221024",
2490+
"revision": "20221031",
24912491
"rootUrl": "https://container.googleapis.com/",
24922492
"schemas": {
24932493
"AcceleratorConfig": {
@@ -2685,7 +2685,7 @@
26852685
"type": "boolean"
26862686
},
26872687
"evaluationMode": {
2688-
"description": "Mode of operation for binauthz policy evaluation. Currently the only options are equivalent to enable/disable. If unspecified, defaults to DISABLED.",
2688+
"description": "Mode of operation for binauthz policy evaluation. If unspecified, defaults to DISABLED.",
26892689
"enum": [
26902690
"EVALUATION_MODE_UNSPECIFIED",
26912691
"DISABLED",
@@ -3591,6 +3591,17 @@
35913591
"properties": {},
35923592
"type": "object"
35933593
},
3594+
"FastSocket": {
3595+
"description": "Configuration of Fast Socket feature.",
3596+
"id": "FastSocket",
3597+
"properties": {
3598+
"enabled": {
3599+
"description": "Whether Fast Socket features are enabled in the node pool.",
3600+
"type": "boolean"
3601+
}
3602+
},
3603+
"type": "object"
3604+
},
35943605
"Filter": {
35953606
"description": "Allows filtering to one or more specific event types. If event types are present, those and only those event types will be transmitted to the cluster. Other types will be skipped. If no filter is specified, or no event types are present, all event types will be sent",
35963607
"id": "Filter",
@@ -4552,6 +4563,10 @@
45524563
"description": "Type of the disk attached to each node (e.g. 'pd-standard', 'pd-ssd' or 'pd-balanced') If unspecified, the default disk type is 'pd-standard'",
45534564
"type": "string"
45544565
},
4566+
"fastSocket": {
4567+
"$ref": "FastSocket",
4568+
"description": "Enable or disable NCCL fast socket for the node pool."
4569+
},
45554570
"gcfsConfig": {
45564571
"$ref": "GcfsConfig",
45574572
"description": "Google Container File System (image streaming) configs."
@@ -6228,6 +6243,10 @@
62286243
"$ref": "ConfidentialNodes",
62296244
"description": "Confidential nodes config. All the nodes in the node pool will be Confidential VM once enabled."
62306245
},
6246+
"fastSocket": {
6247+
"$ref": "FastSocket",
6248+
"description": "Enable or disable NCCL fast socket for the node pool."
6249+
},
62316250
"gcfsConfig": {
62326251
"$ref": "GcfsConfig",
62336252
"description": "GCFS config."

container/v1/container-gen.go

+35-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

container/v1beta1/container-api.json

+21-2
Original file line numberDiff line numberDiff line change
@@ -2512,7 +2512,7 @@
25122512
}
25132513
}
25142514
},
2515-
"revision": "20221017",
2515+
"revision": "20221031",
25162516
"rootUrl": "https://container.googleapis.com/",
25172517
"schemas": {
25182518
"AcceleratorConfig": {
@@ -2738,7 +2738,7 @@
27382738
"type": "boolean"
27392739
},
27402740
"evaluationMode": {
2741-
"description": "Mode of operation for binauthz policy evaluation. Currently the only options are equivalent to enable/disable. If unspecified, defaults to DISABLED.",
2741+
"description": "Mode of operation for binauthz policy evaluation. If unspecified, defaults to DISABLED.",
27422742
"enum": [
27432743
"EVALUATION_MODE_UNSPECIFIED",
27442744
"DISABLED",
@@ -3767,6 +3767,17 @@
37673767
},
37683768
"type": "object"
37693769
},
3770+
"FastSocket": {
3771+
"description": "Configuration of Fast Socket feature.",
3772+
"id": "FastSocket",
3773+
"properties": {
3774+
"enabled": {
3775+
"description": "Whether Fast Socket features are enabled in the node pool.",
3776+
"type": "boolean"
3777+
}
3778+
},
3779+
"type": "object"
3780+
},
37703781
"Filter": {
37713782
"description": "Allows filtering to one or more specific event types. If event types are present, those and only those event types will be transmitted to the cluster. Other types will be skipped. If no filter is specified, or no event types are present, all event types will be sent",
37723783
"id": "Filter",
@@ -4846,6 +4857,10 @@
48464857
"$ref": "EphemeralStorageConfig",
48474858
"description": "Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk."
48484859
},
4860+
"fastSocket": {
4861+
"$ref": "FastSocket",
4862+
"description": "Enable or disable NCCL fast socket for the node pool."
4863+
},
48494864
"gcfsConfig": {
48504865
"$ref": "GcfsConfig",
48514866
"description": "GCFS (Google Container File System) configs."
@@ -6595,6 +6610,10 @@
65956610
"$ref": "ConfidentialNodes",
65966611
"description": "Confidential nodes config. All the nodes in the node pool will be Confidential VM once enabled."
65976612
},
6613+
"fastSocket": {
6614+
"$ref": "FastSocket",
6615+
"description": "Enable or disable NCCL fast socket for the node pool."
6616+
},
65986617
"gcfsConfig": {
65996618
"$ref": "GcfsConfig",
66006619
"description": "GCFS config."

0 commit comments

Comments
 (0)