Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #1753

Merged
merged 1 commit into from Nov 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
40 changes: 39 additions & 1 deletion composer/v1beta1/composer-api.json
Expand Up @@ -518,7 +518,7 @@
}
}
},
"revision": "20221104",
"revision": "20221114",
"rootUrl": "https://composer.googleapis.com/",
"schemas": {
"AllowedIpRange": {
Expand Down Expand Up @@ -789,6 +789,10 @@
"$ref": "PrivateEnvironmentConfig",
"description": "The configuration used for the Private IP Cloud Composer environment."
},
"recoveryConfig": {
"$ref": "RecoveryConfig",
"description": "Optional. The Recovery settings configuration of an environment. This field is supported for Cloud Composer environments in versions composer-2.*.*-airflow-*.*.* and newer."
},
"softwareConfig": {
"$ref": "SoftwareConfig",
"description": "The configuration settings for software inside the environment."
Expand Down Expand Up @@ -1321,6 +1325,17 @@
},
"type": "object"
},
"RecoveryConfig": {
"description": "The Recovery settings of an environment.",
"id": "RecoveryConfig",
"properties": {
"scheduledSnapshotsConfig": {
"$ref": "ScheduledSnapshotsConfig",
"description": "Optional. The configuration for scheduled snapshot creation mechanism."
}
},
"type": "object"
},
"RestartWebServerRequest": {
"description": "Restart Airflow web server.",
"id": "RestartWebServerRequest",
Expand Down Expand Up @@ -1349,6 +1364,29 @@
},
"type": "object"
},
"ScheduledSnapshotsConfig": {
"description": "The configuration for scheduled snapshot creation mechanism.",
"id": "ScheduledSnapshotsConfig",
"properties": {
"enabled": {
"description": "Optional. Whether scheduled snapshots creation is enabled.",
"type": "boolean"
},
"snapshotCreationSchedule": {
"description": "Optional. The cron expression representing the time when snapshots creation mechanism runs. This field is subject to additional validation around frequency of execution.",
"type": "string"
},
"snapshotLocation": {
"description": "Optional. The Cloud Storage location for storing automatically created snapshots.",
"type": "string"
},
"timeZone": {
"description": "Optional. Time zone that sets the context to interpret snapshot_creation_schedule.",
"type": "string"
}
},
"type": "object"
},
"SchedulerResource": {
"description": "Configuration for resources used by Airflow schedulers.",
"id": "SchedulerResource",
Expand Down
78 changes: 78 additions & 0 deletions composer/v1beta1/composer-gen.go

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

23 changes: 21 additions & 2 deletions container/v1/container-api.json
Expand Up @@ -2487,7 +2487,7 @@
}
}
},
"revision": "20221024",
"revision": "20221031",
"rootUrl": "https://container.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -2685,7 +2685,7 @@
"type": "boolean"
},
"evaluationMode": {
"description": "Mode of operation for binauthz policy evaluation. Currently the only options are equivalent to enable/disable. If unspecified, defaults to DISABLED.",
"description": "Mode of operation for binauthz policy evaluation. If unspecified, defaults to DISABLED.",
"enum": [
"EVALUATION_MODE_UNSPECIFIED",
"DISABLED",
Expand Down Expand Up @@ -3591,6 +3591,17 @@
"properties": {},
"type": "object"
},
"FastSocket": {
"description": "Configuration of Fast Socket feature.",
"id": "FastSocket",
"properties": {
"enabled": {
"description": "Whether Fast Socket features are enabled in the node pool.",
"type": "boolean"
}
},
"type": "object"
},
"Filter": {
"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",
"id": "Filter",
Expand Down Expand Up @@ -4552,6 +4563,10 @@
"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'",
"type": "string"
},
"fastSocket": {
"$ref": "FastSocket",
"description": "Enable or disable NCCL fast socket for the node pool."
},
"gcfsConfig": {
"$ref": "GcfsConfig",
"description": "Google Container File System (image streaming) configs."
Expand Down Expand Up @@ -6228,6 +6243,10 @@
"$ref": "ConfidentialNodes",
"description": "Confidential nodes config. All the nodes in the node pool will be Confidential VM once enabled."
},
"fastSocket": {
"$ref": "FastSocket",
"description": "Enable or disable NCCL fast socket for the node pool."
},
"gcfsConfig": {
"$ref": "GcfsConfig",
"description": "GCFS config."
Expand Down
37 changes: 35 additions & 2 deletions container/v1/container-gen.go

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

23 changes: 21 additions & 2 deletions container/v1beta1/container-api.json
Expand Up @@ -2512,7 +2512,7 @@
}
}
},
"revision": "20221017",
"revision": "20221031",
"rootUrl": "https://container.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -2738,7 +2738,7 @@
"type": "boolean"
},
"evaluationMode": {
"description": "Mode of operation for binauthz policy evaluation. Currently the only options are equivalent to enable/disable. If unspecified, defaults to DISABLED.",
"description": "Mode of operation for binauthz policy evaluation. If unspecified, defaults to DISABLED.",
"enum": [
"EVALUATION_MODE_UNSPECIFIED",
"DISABLED",
Expand Down Expand Up @@ -3767,6 +3767,17 @@
},
"type": "object"
},
"FastSocket": {
"description": "Configuration of Fast Socket feature.",
"id": "FastSocket",
"properties": {
"enabled": {
"description": "Whether Fast Socket features are enabled in the node pool.",
"type": "boolean"
}
},
"type": "object"
},
"Filter": {
"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",
"id": "Filter",
Expand Down Expand Up @@ -4846,6 +4857,10 @@
"$ref": "EphemeralStorageConfig",
"description": "Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk."
},
"fastSocket": {
"$ref": "FastSocket",
"description": "Enable or disable NCCL fast socket for the node pool."
},
"gcfsConfig": {
"$ref": "GcfsConfig",
"description": "GCFS (Google Container File System) configs."
Expand Down Expand Up @@ -6595,6 +6610,10 @@
"$ref": "ConfidentialNodes",
"description": "Confidential nodes config. All the nodes in the node pool will be Confidential VM once enabled."
},
"fastSocket": {
"$ref": "FastSocket",
"description": "Enable or disable NCCL fast socket for the node pool."
},
"gcfsConfig": {
"$ref": "GcfsConfig",
"description": "GCFS config."
Expand Down