Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1439)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Feb 14, 2022
1 parent ae341d5 commit 34437da
Show file tree
Hide file tree
Showing 31 changed files with 24,941 additions and 11,611 deletions.
15 changes: 15 additions & 0 deletions api-list.json
Expand Up @@ -3922,6 +3922,21 @@
"documentationLink": "https://developers.google.com/android/work/play/custom-app-api/",
"preferred": true
},
{
"kind": "discovery#directoryItem",
"id": "playintegrity:v1",
"name": "playintegrity",
"version": "v1",
"title": "Google Play Integrity API",
"description": "Play Integrity",
"discoveryRestUrl": "https://playintegrity.googleapis.com/$discovery/rest?version=v1",
"icons": {
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
"x32": "https://www.gstatic.com/images/branding/product/1x/googleg_32dp.png"
},
"documentationLink": "https://developer.android.com/google/play/integrity",
"preferred": true
},
{
"kind": "discovery#directoryItem",
"id": "policyanalyzer:v1beta1",
Expand Down
7 changes: 6 additions & 1 deletion chromepolicy/v1/chromepolicy-api.json
Expand Up @@ -324,7 +324,7 @@
}
}
},
"revision": "20220201",
"revision": "20220210",
"rootUrl": "https://chromepolicy.googleapis.com/",
"schemas": {
"ChromeCrosDpanelAutosettingsProtoPolicyApiLifecycle": {
Expand Down Expand Up @@ -728,6 +728,11 @@
"description": "The resolved value of a policy for a given target.",
"id": "GoogleChromePolicyV1ResolvedPolicy",
"properties": {
"addedSourceKey": {
"$ref": "GoogleChromePolicyV1PolicyTargetKey",
"description": "Output only. The added source key establishes at which level an entity was explicitly added for management. This is useful for certain type of policies that are only applied if they are explicitly added for management. For example: apps and networks. An entity can only be deleted from management in an Organizational Unit that it was explicitly added to. If this is not present it means that the policy is managed without the need to explicitly add an entity, for example: standard user or device policies.",
"readOnly": true
},
"sourceKey": {
"$ref": "GoogleChromePolicyV1PolicyTargetKey",
"description": "Output only. The source resource from which this policy value is obtained. May be the same as `targetKey` if the policy is directly modified on the target, otherwise it would be another resource from which the policy gets its value (if applicable). If not present, the source is the default value for the customer.",
Expand Down
25 changes: 18 additions & 7 deletions chromepolicy/v1/chromepolicy-gen.go

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

14 changes: 9 additions & 5 deletions clouddeploy/v1/clouddeploy-api.json
Expand Up @@ -1201,15 +1201,15 @@
}
}
},
"revision": "20220124",
"revision": "20220202",
"rootUrl": "https://clouddeploy.googleapis.com/",
"schemas": {
"AnthosCluster": {
"description": "Information specifying an Anthos Cluster.",
"id": "AnthosCluster",
"properties": {
"membership": {
"description": "Membership of the GKE Hub registered cluster that the Skaffold configuration should be applied to. Format is `projects/{project}/locations/{location}/memberships/{membership_name}`.",
"description": "Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is `projects/{project}/locations/{location}/memberships/{membership_name}`.",
"type": "string"
}
},
Expand Down Expand Up @@ -1348,7 +1348,7 @@
"type": "object"
},
"Date": {
"description": "Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.",
"description": "Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day, with a zero year (e.g., an anniversary) * A year on its own, with a zero month and a zero day * A year and month, with a zero day (e.g., a credit card expiration date) Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp",
"id": "Date",
"properties": {
"day": {
Expand Down Expand Up @@ -1454,7 +1454,7 @@
"id": "ExecutionConfig",
"properties": {
"artifactStorage": {
"description": "Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket (\"gs://my-bucket\") or a path within a bucket (\"gs://my-bucket/my-dir\"). If unspecified, a default bucket located in the same region will be used.",
"description": "Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket (\"gs://my-bucket\") or a path within a bucket (\"gs://my-bucket/my-dir\"). If unspecified, a default bucket located in the same region will be used.",
"type": "string"
},
"defaultPool": {
Expand All @@ -1466,7 +1466,7 @@
"description": "Optional. Use private Cloud Build pool."
},
"serviceAccount": {
"description": "Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.",
"description": "Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.",
"type": "string"
},
"usages": {
Expand Down Expand Up @@ -1523,6 +1523,10 @@
"cluster": {
"description": "Information specifying a GKE Cluster. Format is `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.",
"type": "string"
},
"internalIp": {
"description": "Optional. If true, `cluster` is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when `cluster` is a [private GKE cluster](https://cloud.google.com/kubernetes-engine/docs/concepts/private-cluster-concept).",
"type": "boolean"
}
},
"type": "object"
Expand Down
34 changes: 21 additions & 13 deletions clouddeploy/v1/clouddeploy-gen.go

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

0 comments on commit 34437da

Please sign in to comment.