Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1571)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jun 7, 2022
1 parent f12f0bb commit c2c6a68
Show file tree
Hide file tree
Showing 26 changed files with 4,063 additions and 1,468 deletions.
37 changes: 35 additions & 2 deletions container/v1beta1/container-api.json
Expand Up @@ -2484,7 +2484,7 @@
}
}
},
"revision": "20220429",
"revision": "20220518",
"rootUrl": "https://container.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand All @@ -2503,6 +2503,15 @@
"gpuPartitionSize": {
"description": "Size of partitions to create on the GPU. Valid values are described in the NVIDIA [mig user guide](https://docs.nvidia.com/datacenter/tesla/mig-user-guide/#partitioning).",
"type": "string"
},
"gpuSharingConfig": {
"$ref": "GPUSharingConfig",
"description": "The configuration for GPU sharing options."
},
"maxTimeSharedClientsPerGpu": {
"description": "The number of time-shared GPU resources to expose for each physical GPU.",
"format": "int64",
"type": "string"
}
},
"type": "object"
Expand Down Expand Up @@ -3650,6 +3659,30 @@
},
"type": "object"
},
"GPUSharingConfig": {
"description": "GPUSharingConfig represents the GPU sharing configuration for Hardware Accelerators.",
"id": "GPUSharingConfig",
"properties": {
"gpuSharingStrategy": {
"description": "The type of GPU sharing strategy to enable on the GPU node.",
"enum": [
"GPU_SHARING_STRATEGY_UNSPECIFIED",
"TIME_SHARING"
],
"enumDescriptions": [
"Default value.",
"GPUs are time-shared between containers."
],
"type": "string"
},
"maxSharedClientsPerGpu": {
"description": "The max number of containers that can share a physical GPU.",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"GcePersistentDiskCsiDriverConfig": {
"description": "Configuration for the Compute Engine PD CSI driver.",
"id": "GcePersistentDiskCsiDriverConfig",
Expand Down Expand Up @@ -4556,7 +4589,7 @@
"type": "object"
},
"NodeConfig": {
"description": "Parameters that describe the nodes in a cluster. *Note:* GKE Autopilot clusters do not recognize parameters in `NodeConfig`. Use AutoprovisioningNodePoolDefaults instead.",
"description": "Parameters that describe the nodes in a cluster. GKE Autopilot clusters do not recognize parameters in `NodeConfig`. Use AutoprovisioningNodePoolDefaults instead.",
"id": "NodeConfig",
"properties": {
"accelerators": {
Expand Down
52 changes: 49 additions & 3 deletions container/v1beta1/container-gen.go

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

10 changes: 3 additions & 7 deletions datafusion/v1/datafusion-api.json
Expand Up @@ -737,7 +737,7 @@
}
}
},
"revision": "20220504",
"revision": "20220603",
"rootUrl": "https://datafusion.googleapis.com/",
"schemas": {
"Accelerator": {
Expand Down Expand Up @@ -903,16 +903,12 @@
"description": "Confirguration of PubSubEventWriter.",
"id": "EventPublishConfig",
"properties": {
"eventPublishEnabled": {
"enabled": {
"description": "Required. Option to enable Event Publishing.",
"type": "boolean"
},
"project": {
"description": "Project name.",
"type": "string"
},
"topic": {
"description": "Required. Pub/Sub Topic.",
"description": "Required. The resource name of the Pub/Sub topic. Format: projects/{project_id}/topics/{topic_id}",
"type": "string"
}
},
Expand Down
27 changes: 12 additions & 15 deletions datafusion/v1/datafusion-gen.go

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

0 comments on commit c2c6a68

Please sign in to comment.