Skip to content

Commit e3868f2

Browse files
authoredNov 1, 2024··
feat(all): auto-regenerate discovery clients (#2852)
1 parent bcf1580 commit e3868f2

33 files changed

+458
-96
lines changed
 

‎admin/directory/v1/admin-api.json

+25-1
Original file line numberDiff line numberDiff line change
@@ -4671,7 +4671,7 @@
46714671
}
46724672
}
46734673
},
4674-
"revision": "20240924",
4674+
"revision": "20241029",
46754675
"rootUrl": "https://admin.googleapis.com/",
46764676
"schemas": {
46774677
"Alias": {
@@ -5184,6 +5184,25 @@
51845184
},
51855185
"type": "object"
51865186
},
5187+
"ByteUsage": {
5188+
"description": "Represents a data capacity with some amount of current usage in bytes.",
5189+
"id": "ByteUsage",
5190+
"properties": {
5191+
"capacityBytes": {
5192+
"description": "Output only. The total capacity value, in bytes.",
5193+
"format": "int64",
5194+
"readOnly": true,
5195+
"type": "string"
5196+
},
5197+
"usedBytes": {
5198+
"description": "Output only. The current usage value, in bytes.",
5199+
"format": "int64",
5200+
"readOnly": true,
5201+
"type": "string"
5202+
}
5203+
},
5204+
"type": "object"
5205+
},
51875206
"CalendarResource": {
51885207
"description": "Public API: Resources.calendars",
51895208
"id": "CalendarResource",
@@ -5640,6 +5659,11 @@
56405659
"readOnly": true,
56415660
"type": "string"
56425661
},
5662+
"diskSpaceUsage": {
5663+
"$ref": "ByteUsage",
5664+
"description": "Output only. How much disk space the device has available and is currently using.",
5665+
"readOnly": true
5666+
},
56435667
"diskVolumeReports": {
56445668
"description": "Reports of disk space and other info about mounted/connected volumes.",
56455669
"items": {

‎admin/directory/v1/admin-gen.go

+28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎cloudfunctions/v2/cloudfunctions-api.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@
716716
}
717717
}
718718
},
719-
"revision": "20240905",
719+
"revision": "20241024",
720720
"rootUrl": "https://cloudfunctions.googleapis.com/",
721721
"schemas": {
722722
"AbortFunctionUpgradeRequest": {
@@ -2058,7 +2058,7 @@
20582058
"type": "object"
20592059
},
20602060
"UpgradeInfo": {
2061-
"description": "Information related to: * A function's eligibility for 1st Gen to 2nd Gen migration * Current state of migration for function undergoing migration.",
2061+
"description": "Information related to: * A function's eligibility for 1st Gen to 2nd Gen migration and 2nd Gen to CRf detach. * Current state of migration for function undergoing migration/detach.",
20622062
"id": "UpgradeInfo",
20632063
"properties": {
20642064
"buildConfig": {
@@ -2085,7 +2085,8 @@
20852085
"REDIRECT_FUNCTION_UPGRADE_TRAFFIC_SUCCESSFUL",
20862086
"REDIRECT_FUNCTION_UPGRADE_TRAFFIC_ERROR",
20872087
"ROLLBACK_FUNCTION_UPGRADE_TRAFFIC_ERROR",
2088-
"COMMIT_FUNCTION_UPGRADE_ERROR"
2088+
"COMMIT_FUNCTION_UPGRADE_ERROR",
2089+
"DETACH_IN_PROGRESS"
20892090
],
20902091
"enumDescriptions": [
20912092
"Unspecified state. Most functions are in this upgrade state.",
@@ -2097,7 +2098,8 @@
20972098
"RedirectFunctionUpgradeTraffic API was successful and traffic is served by 2nd Gen function stack.",
20982099
"RedirectFunctionUpgradeTraffic API was un-successful.",
20992100
"RollbackFunctionUpgradeTraffic API was un-successful.",
2100-
"CommitFunctionUpgrade API was un-successful."
2101+
"CommitFunctionUpgrade API was un-successful.",
2102+
"Function is requested to be detached from 2nd Gen to CRf."
21012103
],
21022104
"type": "string"
21032105
}

‎cloudfunctions/v2/cloudfunctions-gen.go

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎cloudfunctions/v2alpha/cloudfunctions-api.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@
716716
}
717717
}
718718
},
719-
"revision": "20240905",
719+
"revision": "20241024",
720720
"rootUrl": "https://cloudfunctions.googleapis.com/",
721721
"schemas": {
722722
"AbortFunctionUpgradeRequest": {
@@ -2058,7 +2058,7 @@
20582058
"type": "object"
20592059
},
20602060
"UpgradeInfo": {
2061-
"description": "Information related to: * A function's eligibility for 1st Gen to 2nd Gen migration * Current state of migration for function undergoing migration.",
2061+
"description": "Information related to: * A function's eligibility for 1st Gen to 2nd Gen migration and 2nd Gen to CRf detach. * Current state of migration for function undergoing migration/detach.",
20622062
"id": "UpgradeInfo",
20632063
"properties": {
20642064
"buildConfig": {
@@ -2085,7 +2085,8 @@
20852085
"REDIRECT_FUNCTION_UPGRADE_TRAFFIC_SUCCESSFUL",
20862086
"REDIRECT_FUNCTION_UPGRADE_TRAFFIC_ERROR",
20872087
"ROLLBACK_FUNCTION_UPGRADE_TRAFFIC_ERROR",
2088-
"COMMIT_FUNCTION_UPGRADE_ERROR"
2088+
"COMMIT_FUNCTION_UPGRADE_ERROR",
2089+
"DETACH_IN_PROGRESS"
20892090
],
20902091
"enumDescriptions": [
20912092
"Unspecified state. Most functions are in this upgrade state.",
@@ -2097,7 +2098,8 @@
20972098
"RedirectFunctionUpgradeTraffic API was successful and traffic is served by 2nd Gen function stack.",
20982099
"RedirectFunctionUpgradeTraffic API was un-successful.",
20992100
"RollbackFunctionUpgradeTraffic API was un-successful.",
2100-
"CommitFunctionUpgrade API was un-successful."
2101+
"CommitFunctionUpgrade API was un-successful.",
2102+
"Function is requested to be detached from 2nd Gen to CRf."
21012103
],
21022104
"type": "string"
21032105
}

‎cloudfunctions/v2alpha/cloudfunctions-gen.go

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎cloudfunctions/v2beta/cloudfunctions-api.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@
716716
}
717717
}
718718
},
719-
"revision": "20240905",
719+
"revision": "20241024",
720720
"rootUrl": "https://cloudfunctions.googleapis.com/",
721721
"schemas": {
722722
"AbortFunctionUpgradeRequest": {
@@ -2058,7 +2058,7 @@
20582058
"type": "object"
20592059
},
20602060
"UpgradeInfo": {
2061-
"description": "Information related to: * A function's eligibility for 1st Gen to 2nd Gen migration * Current state of migration for function undergoing migration.",
2061+
"description": "Information related to: * A function's eligibility for 1st Gen to 2nd Gen migration and 2nd Gen to CRf detach. * Current state of migration for function undergoing migration/detach.",
20622062
"id": "UpgradeInfo",
20632063
"properties": {
20642064
"buildConfig": {
@@ -2085,7 +2085,8 @@
20852085
"REDIRECT_FUNCTION_UPGRADE_TRAFFIC_SUCCESSFUL",
20862086
"REDIRECT_FUNCTION_UPGRADE_TRAFFIC_ERROR",
20872087
"ROLLBACK_FUNCTION_UPGRADE_TRAFFIC_ERROR",
2088-
"COMMIT_FUNCTION_UPGRADE_ERROR"
2088+
"COMMIT_FUNCTION_UPGRADE_ERROR",
2089+
"DETACH_IN_PROGRESS"
20892090
],
20902091
"enumDescriptions": [
20912092
"Unspecified state. Most functions are in this upgrade state.",
@@ -2097,7 +2098,8 @@
20972098
"RedirectFunctionUpgradeTraffic API was successful and traffic is served by 2nd Gen function stack.",
20982099
"RedirectFunctionUpgradeTraffic API was un-successful.",
20992100
"RollbackFunctionUpgradeTraffic API was un-successful.",
2100-
"CommitFunctionUpgrade API was un-successful."
2101+
"CommitFunctionUpgrade API was un-successful.",
2102+
"Function is requested to be detached from 2nd Gen to CRf."
21012103
],
21022104
"type": "string"
21032105
}

‎cloudfunctions/v2beta/cloudfunctions-gen.go

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎container/v1beta1/container-api.json

+69-1
Original file line numberDiff line numberDiff line change
@@ -2685,7 +2685,7 @@
26852685
}
26862686
}
26872687
},
2688-
"revision": "20241008",
2688+
"revision": "20241017",
26892689
"rootUrl": "https://container.googleapis.com/",
26902690
"schemas": {
26912691
"AcceleratorConfig": {
@@ -3641,6 +3641,10 @@
36413641
"$ref": "ParentProductConfig",
36423642
"description": "The configuration of the parent product of the cluster. This field is used by Google internal products that are built on top of the GKE cluster and take the ownership of the cluster."
36433643
},
3644+
"podAutoscaling": {
3645+
"$ref": "PodAutoscaling",
3646+
"description": "The config for pod autoscaling."
3647+
},
36443648
"podSecurityPolicyConfig": {
36453649
"$ref": "PodSecurityPolicyConfig",
36463650
"description": "Configuration for the PodSecurityPolicy feature."
@@ -3961,6 +3965,10 @@
39613965
"description": "Enable/Disable private endpoint for the cluster's master. Deprecated: Use desired_control_plane_endpoints_config.ip_endpoints_config.enable_public_endpoint instead. Note that the value of enable_public_endpoint is reversed: if enable_private_endpoint is false, then enable_public_endpoint will be true.",
39623966
"type": "boolean"
39633967
},
3968+
"desiredEnterpriseConfig": {
3969+
"$ref": "DesiredEnterpriseConfig",
3970+
"description": "The desired enterprise configuration for the cluster."
3971+
},
39643972
"desiredFleet": {
39653973
"$ref": "Fleet",
39663974
"description": "The desired fleet configuration for the cluster."
@@ -4095,6 +4103,10 @@
40954103
"$ref": "ParentProductConfig",
40964104
"description": "The desired parent product config for the cluster."
40974105
},
4106+
"desiredPodAutoscaling": {
4107+
"$ref": "PodAutoscaling",
4108+
"description": "The desired config for pod autoscaling."
4109+
},
40984110
"desiredPodSecurityPolicyConfig": {
40994111
"$ref": "PodSecurityPolicyConfig",
41004112
"description": "The desired configuration options for the PodSecurityPolicy feature."
@@ -4655,6 +4667,27 @@
46554667
},
46564668
"type": "object"
46574669
},
4670+
"DesiredEnterpriseConfig": {
4671+
"description": "DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.",
4672+
"id": "DesiredEnterpriseConfig",
4673+
"properties": {
4674+
"desiredTier": {
4675+
"description": "desired_tier specifies the desired tier of the cluster.",
4676+
"enum": [
4677+
"CLUSTER_TIER_UNSPECIFIED",
4678+
"STANDARD",
4679+
"ENTERPRISE"
4680+
],
4681+
"enumDescriptions": [
4682+
"CLUSTER_TIER_UNSPECIFIED is when cluster_tier is not set.",
4683+
"STANDARD indicates a standard GKE cluster.",
4684+
"ENTERPRISE indicates a GKE Enterprise cluster."
4685+
],
4686+
"type": "string"
4687+
}
4688+
},
4689+
"type": "object"
4690+
},
46584691
"DnsCacheConfig": {
46594692
"description": "Configuration for NodeLocal DNSCache",
46604693
"id": "DnsCacheConfig",
@@ -4690,6 +4723,20 @@
46904723
],
46914724
"readOnly": true,
46924725
"type": "string"
4726+
},
4727+
"desiredTier": {
4728+
"description": "desired_tier specifies the desired tier of the cluster.",
4729+
"enum": [
4730+
"CLUSTER_TIER_UNSPECIFIED",
4731+
"STANDARD",
4732+
"ENTERPRISE"
4733+
],
4734+
"enumDescriptions": [
4735+
"CLUSTER_TIER_UNSPECIFIED is when cluster_tier is not set.",
4736+
"STANDARD indicates a standard GKE cluster.",
4737+
"ENTERPRISE indicates a GKE Enterprise cluster."
4738+
],
4739+
"type": "string"
46934740
}
46944741
},
46954742
"type": "object"
@@ -7109,6 +7156,27 @@
71097156
},
71107157
"type": "object"
71117158
},
7159+
"PodAutoscaling": {
7160+
"description": "PodAutoscaling is used for configuration of parameters for workload autoscaling.",
7161+
"id": "PodAutoscaling",
7162+
"properties": {
7163+
"hpaProfile": {
7164+
"description": "Selected Horizontal Pod Autoscaling profile.",
7165+
"enum": [
7166+
"HPA_PROFILE_UNSPECIFIED",
7167+
"NONE",
7168+
"PERFORMANCE"
7169+
],
7170+
"enumDescriptions": [
7171+
"HPA_PROFILE_UNSPECIFIED is used when no custom HPA profile is set.",
7172+
"Customers explicitly opt-out of HPA profiles.",
7173+
"PERFORMANCE is used when customers opt-in to the performance HPA profile. In this profile we support a higher number of HPAs per cluster and faster metrics collection for workload autoscaling."
7174+
],
7175+
"type": "string"
7176+
}
7177+
},
7178+
"type": "object"
7179+
},
71127180
"PodCIDROverprovisionConfig": {
71137181
"description": "[PRIVATE FIELD] Config for pod CIDR size overprovisioning.",
71147182
"id": "PodCIDROverprovisionConfig",

0 commit comments

Comments
 (0)
Please sign in to comment.