Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2076)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jul 18, 2023
1 parent bf32188 commit 334c07e
Show file tree
Hide file tree
Showing 41 changed files with 934 additions and 158 deletions.
6 changes: 3 additions & 3 deletions analyticsadmin/v1alpha/analyticsadmin-api.json
Expand Up @@ -4322,7 +4322,7 @@
}
}
},
"revision": "20230704",
"revision": "20230716",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1alphaAccessBetweenFilter": {
Expand Down Expand Up @@ -4876,8 +4876,8 @@
"enumDescriptions": [
"Default value. This value is unused.",
"No data export scope selected yet. Export scope can never be changed back to this value.",
"The Ads Web Conversion Data export scope is Cross Channel.",
"The Ads Web Conversion Data export scope is Ads Preferred."
"Paid and organic channels are eligible to receive conversion credit, but only credit assigned to Google Ads channels will appear in your Ads accounts. To learn more, see [Paid and Organic channels](https://support.google.com/analytics/answer/10632359).",
"Only Google Ads paid channels are eligible to receive conversion credit. To learn more, see [Google Paid channels](https://support.google.com/analytics/answer/10632359)."
],
"type": "string"
},
Expand Down
12 changes: 8 additions & 4 deletions analyticsadmin/v1alpha/analyticsadmin-gen.go

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

7 changes: 6 additions & 1 deletion androidenterprise/v1/androidenterprise-api.json
Expand Up @@ -2649,7 +2649,7 @@
}
}
},
"revision": "20230703",
"revision": "20230713",
"rootUrl": "https://androidenterprise.googleapis.com/",
"schemas": {
"Administrator": {
Expand Down Expand Up @@ -2975,6 +2975,11 @@
"description": "True if this version is a production APK.",
"type": "boolean"
},
"targetSdkVersion": {
"description": "The SDK version this app targets, as specified in the manifest of the APK. See http://developer.android.com/guide/topics/manifest/uses-sdk-element.html",
"format": "int32",
"type": "integer"
},
"track": {
"description": "Deprecated, use trackId instead.",
"enum": [
Expand Down
5 changes: 5 additions & 0 deletions androidenterprise/v1/androidenterprise-gen.go

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

16 changes: 15 additions & 1 deletion androidpublisher/v3/androidpublisher-api.json
Expand Up @@ -4047,7 +4047,7 @@
}
}
},
"revision": "20230704",
"revision": "20230717",
"rootUrl": "https://androidpublisher.googleapis.com/",
"schemas": {
"Abi": {
Expand Down Expand Up @@ -6390,6 +6390,20 @@
"format": "google-datetime",
"type": "string"
},
"priceIncreaseType": {
"description": "Optional. The behavior the caller wants users to see if there is a price increase during migration. If left unset, the behavior defaults to PRICE_INCREASE_TYPE_OPT_IN.",
"enum": [
"PRICE_INCREASE_TYPE_UNSPECIFIED",
"PRICE_INCREASE_TYPE_OPT_IN",
"PRICE_INCREASE_TYPE_OPT_OUT"
],
"enumDescriptions": [
"Unspecified state.",
"Price increase will be presented to users on an opt-in basis.",
"Price increase will be presented to users on an opt-out basis."
],
"type": "string"
},
"regionCode": {
"description": "Required. Region code this configuration applies to, as defined by ISO 3166-2, e.g. \"US\".",
"type": "string"
Expand Down
12 changes: 12 additions & 0 deletions androidpublisher/v3/androidpublisher-gen.go

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

76 changes: 71 additions & 5 deletions apigee/v1/apigee-api.json
Expand Up @@ -9242,7 +9242,7 @@
}
}
},
"revision": "20230630",
"revision": "20230715",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -9584,6 +9584,10 @@
"$ref": "GoogleCloudApigeeV1GraphQLOperationGroup",
"description": "Configuration used to group Apigee proxies or remote services with graphQL operation name, graphQL operation type and quotas. This grouping allows us to precisely set quota for a particular combination of graphQL name and operation type for a particular proxy request. If graphQL name is not set, this would imply quota will be applied on all graphQL requests matching the operation type."
},
"grpcOperationGroup": {
"$ref": "GoogleCloudApigeeV1GrpcOperationGroup",
"description": "Optional. Configuration used to group Apigee proxies with gRPC services and method names. This grouping allows us to set quota for a particular proxy with the gRPC service name and method. If a method name is not set, this implies quota and authorization are applied to all gRPC methods implemented by that proxy for that particular gRPC service."
},
"lastModifiedAt": {
"description": "Response only. Modified time of this environment as milliseconds since epoch.",
"format": "int64",
Expand Down Expand Up @@ -11857,6 +11861,9 @@
"description": "Optional. Url of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that scheme must be one of \"http\" or \"https\", and port must be supplied.",
"type": "string"
},
"hasAttachedFlowHooks": {
"type": "boolean"
},
"lastModifiedAt": {
"description": "Output only. Last modification time of this environment as milliseconds since epoch.",
"format": "int64",
Expand Down Expand Up @@ -12408,6 +12415,53 @@
},
"type": "object"
},
"GoogleCloudApigeeV1GrpcOperationConfig": {
"description": "Binds the resources in a proxy or remote service with the gRPC operation and its associated quota enforcement.",
"id": "GoogleCloudApigeeV1GrpcOperationConfig",
"properties": {
"apiSource": {
"description": "Required. Name of the API proxy with which the gRPC operation and quota are associated.",
"type": "string"
},
"attributes": {
"description": "Custom attributes associated with the operation.",
"items": {
"$ref": "GoogleCloudApigeeV1Attribute"
},
"type": "array"
},
"methods": {
"description": "List of unqualified gRPC method names for the proxy to which quota will be applied. If this field is empty, the Quota will apply to all operations on the gRPC service defined on the proxy. Example: Given a proxy that is configured to serve com.petstore.PetService, the methods com.petstore.PetService.ListPets and com.petstore.PetService.GetPet would be specified here as simply [\"ListPets\", \"GetPet\"].",
"items": {
"type": "string"
},
"type": "array"
},
"quota": {
"$ref": "GoogleCloudApigeeV1Quota",
"description": "Quota parameters to be enforced for the methods and API source combination. If none are specified, quota enforcement will not be done."
},
"service": {
"description": "Required. gRPC Service name associated to be associated with the API proxy, on which quota rules can be applied upon.",
"type": "string"
}
},
"type": "object"
},
"GoogleCloudApigeeV1GrpcOperationGroup": {
"description": "List of gRPC operation configuration details associated with Apigee API proxies.",
"id": "GoogleCloudApigeeV1GrpcOperationGroup",
"properties": {
"operationConfigs": {
"description": "Required. List of operation configurations for either Apigee API proxies that are associated with this API product.",
"items": {
"$ref": "GoogleCloudApigeeV1GrpcOperationConfig"
},
"type": "array"
}
},
"type": "object"
},
"GoogleCloudApigeeV1IngressConfig": {
"id": "GoogleCloudApigeeV1IngressConfig",
"properties": {
Expand Down Expand Up @@ -15794,12 +15848,18 @@
"enum": [
"PROTOCOL_UNSPECIFIED",
"HTTP",
"GRPC"
"HTTP2",
"GRPC_TARGET",
"GRPC",
"EXTERNAL_CALLOUT"
],
"enumDescriptions": [
"UNSPECIFIED defaults to HTTP for backwards compatibility.",
"The TargetServer uses HTTP.",
"GRPC TargetServer to be used in ExternalCallout Policy. Prefer to use EXTERNAL_CALLOUT instead. TODO(b/266125112) deprecate once EXTERNAL _CALLOUT generally available."
"The TargetSever uses HTTP2.",
"The TargetServer uses GRPC.",
"GRPC TargetServer to be used in ExternalCallout Policy. Prefer to use EXTERNAL_CALLOUT instead. TODO(b/266125112) deprecate once EXTERNAL _CALLOUT generally available.",
"The TargetServer is to be used in the ExternalCallout Policy"
],
"type": "string"
},
Expand Down Expand Up @@ -15835,12 +15895,18 @@
"enum": [
"PROTOCOL_UNSPECIFIED",
"HTTP",
"GRPC"
"HTTP2",
"GRPC_TARGET",
"GRPC",
"EXTERNAL_CALLOUT"
],
"enumDescriptions": [
"UNSPECIFIED defaults to HTTP for backwards compatibility.",
"The TargetServer uses HTTP.",
"GRPC TargetServer to be used in ExternalCallout Policy. Prefer to use EXTERNAL_CALLOUT instead. TODO(b/266125112) deprecate once EXTERNAL _CALLOUT generally available."
"The TargetSever uses HTTP2.",
"The TargetServer uses GRPC.",
"GRPC TargetServer to be used in ExternalCallout Policy. Prefer to use EXTERNAL_CALLOUT instead. TODO(b/266125112) deprecate once EXTERNAL _CALLOUT generally available.",
"The TargetServer is to be used in the ExternalCallout Policy"
],
"type": "string"
},
Expand Down
101 changes: 101 additions & 0 deletions apigee/v1/apigee-gen.go

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

0 comments on commit 334c07e

Please sign in to comment.