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 #1790

Merged
merged 1 commit into from Dec 19, 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
38 changes: 36 additions & 2 deletions batch/v1/batch-api.json
Expand Up @@ -643,7 +643,7 @@
}
}
},
"revision": "20221201",
"revision": "20221212",
"rootUrl": "https://batch.googleapis.com/",
"schemas": {
"Accelerator": {
Expand Down Expand Up @@ -725,7 +725,7 @@
"type": "object"
},
"AgentMetadata": {
"description": "AgentMetadata never changes for a single instance of VM agent.",
"description": "VM Agent Metadata.",
"id": "AgentMetadata",
"properties": {
"creationTime": {
Expand All @@ -750,6 +750,10 @@
"format": "uint64",
"type": "string"
},
"instancePreemptionNoticeReceived": {
"description": "If the GCP instance has received preemption notice.",
"type": "boolean"
},
"osRelease": {
"additionalProperties": {
"type": "string"
Expand Down Expand Up @@ -1093,6 +1097,17 @@
"description": "An Environment describes a collection of environment variables to set when executing Tasks.",
"id": "Environment",
"properties": {
"encryptedVariables": {
"$ref": "KMSEnvMap",
"description": "An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values."
},
"secretVariables": {
"additionalProperties": {
"type": "string"
},
"description": "A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.",
"type": "object"
},
"variables": {
"additionalProperties": {
"type": "string"
Expand Down Expand Up @@ -1364,6 +1379,20 @@
},
"type": "object"
},
"KMSEnvMap": {
"id": "KMSEnvMap",
"properties": {
"cipherText": {
"description": "The value of the cipherText response from the `encrypt` method.",
"type": "string"
},
"keyName": {
"description": "The name of the KMS key that will be used to decrypt the cipher text.",
"type": "string"
}
},
"type": "object"
},
"LifecyclePolicy": {
"description": "LifecyclePolicy describes how to deal with task failures based on different conditions.",
"id": "LifecyclePolicy",
Expand Down Expand Up @@ -1791,6 +1820,11 @@
"description": "Response to ReportAgentStateRequest.",
"id": "ReportAgentStateResponse",
"properties": {
"defaultReportInterval": {
"description": "Default report interval override",
"format": "google-duration",
"type": "string"
},
"minReportInterval": {
"description": "Minimum report interval override",
"format": "google-duration",
Expand Down
83 changes: 66 additions & 17 deletions batch/v1/batch-gen.go

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

33 changes: 25 additions & 8 deletions clouddeploy/v1/clouddeploy-api.json
Expand Up @@ -1334,7 +1334,7 @@
}
}
},
"revision": "20221020",
"revision": "20221208",
"rootUrl": "https://clouddeploy.googleapis.com/",
"schemas": {
"AbandonReleaseRequest": {
Expand Down Expand Up @@ -1509,20 +1509,18 @@
"id": "Config",
"properties": {
"defaultSkaffoldVersion": {
"description": "Output only. Default Skaffold version that is assigned when a Release is created without specifying a Skaffold version.",
"readOnly": true,
"description": "Default Skaffold version that is assigned when a Release is created without specifying a Skaffold version.",
"type": "string"
},
"name": {
"description": "Name of the configuration.",
"type": "string"
},
"supportedVersions": {
"description": "Output only. All supported versions of Skaffold.",
"description": "All supported versions of Skaffold.",
"items": {
"$ref": "SkaffoldVersion"
},
"readOnly": true,
"type": "array"
}
},
Expand Down Expand Up @@ -2331,7 +2329,11 @@
},
"targetsPresentCondition": {
"$ref": "TargetsPresentCondition",
"description": "Detalis around targets enumerated in the pipeline."
"description": "Details around targets enumerated in the pipeline."
},
"targetsTypeCondition": {
"$ref": "TargetsTypeCondition",
"description": "Details on the whether the targets enumerated in the pipeline are of the same type."
}
},
"type": "object"
Expand Down Expand Up @@ -2832,7 +2834,7 @@
"properties": {
"supportEndDate": {
"$ref": "Date",
"description": "Date when this version is expected to no longer be supported."
"description": "Date when this version is expected to no longer be supported. For a more precise time, use the `support_expiration_time` field."
},
"version": {
"description": "Release version number. For example, \"1.20.3\".",
Expand Down Expand Up @@ -3095,7 +3097,7 @@
"id": "TargetsPresentCondition",
"properties": {
"missingTargets": {
"description": "The list of Target names that are missing. For example, projects/{project_id}/locations/{location_name}/targets/{target_name}.",
"description": "The list of Target names that do not exist. For example, projects/{project_id}/locations/{location_name}/targets/{target_name}.",
"items": {
"type": "string"
},
Expand All @@ -3113,6 +3115,21 @@
},
"type": "object"
},
"TargetsTypeCondition": {
"description": "TargetsTypeCondition contains information on whether the Targets defined in the Delivery Pipeline are of the same type.",
"id": "TargetsTypeCondition",
"properties": {
"errorDetails": {
"description": "Human readable error message.",
"type": "string"
},
"status": {
"description": "True if the targets are all a comparable type. For example this is true if all targets are GKE clusters. This is false if some targets are Cloud Run targets and others are GKE clusters.",
"type": "boolean"
}
},
"type": "object"
},
"TestIamPermissionsRequest": {
"description": "Request message for `TestIamPermissions` method.",
"id": "TestIamPermissionsRequest",
Expand Down
53 changes: 46 additions & 7 deletions clouddeploy/v1/clouddeploy-gen.go

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