In particular this applies to Java and Python microgenerators.
With this change `java_gapic_*` and `py_gapic_*` rules mean microgenerator versions. The monolith versions of the rules are named as `java_gapic_*_legacy` and `py_gapic_*_legacy` respectively.
Also change Ads BAZEL template to reflect the change in default rule names.
Also change `DO NOT OVERRIDE` comment warnings meaning (to reflect that now by default microgenerator rules are generated and the generated version must be accepted only if the API is being migrated to the microgenerator).
PiperOrigin-RevId: 346227314
fix: deprecate SetLocations; use UpdateCluster
feat: support for sysctls config in Linux nodes
feat: support for node kubelet config controlling CPU manager policy, CFS quota
feat: support for Customer Managed Encryption in nodes
feat: support for SSDs as ephemeral storage
feat: support for node reservation affinity
feat: support for Gvisor in nodes
fix: deprecate basic auth fields (removed in 1.19 clusters)
feat: support for NodeLocalDNS
feat: support for ConfigConnector
feat: support for the Compute Engine Persistent Disk CSI driver
feat: support for KALM
feat: support for private cluster VPC peering and master global access
feat: support for CloudRun load balancers
feat: support using routes for pod IPs
feat: support for Shielded Nodes
feat: support for release channels
feat: support for Workload Identity
feat: support for Cluster Telemetry
feat: support for Cloud TPU
feat: support for receiving upgrade notifications
feat: support for Confidential Nodes
feat: support for disabling default sNAT
feat: support for selecting Kubernetes datapath model
feat: support for encrypting etcd databases
feat: support for configuration of master components
fix: deprecate Operation.cluster_conditions and operation_conditions; use error
feat: support updating NodePool locations
feat: support for node Surge Upgrades
feat: support for specifying Cluster Autoscaling profile.
feat: support for Node Auto Provisioning
feat: support for specifying node disk size and type
fix: deprecated StatusCondition.code; use canonical_code
docs: many minor documentation clarifications
docs: some output only fields now annotated as such
PiperOrigin-RevId: 344443035
fix: deprecate SetLocations; use UpdateCluster
refactor: provide name alias for GetOperation (as method signature annotation)
feat: support for GetJSONWebKeys
feat: support for Workload Identity
feat: support for Gvisor in nodes
feat: support for node reservation affinity
feat: support for Customer Managed Encryption in nodes
fix: deprecate basic auth fields (removed in 1.19 clusters)
feat: support for NodeLocalDNS
feat: support for ConfigConnector
feat: support for private cluster VPC peering
feat: support for CloudRun load balancers
feat: support using routes for pod IPs
feat: support for Shielded Nodes
feat: support for release channels
fix: deprecated Cluster/NodePool.status_message; use conditions
feat: support for disabling default sNAT
feat: operations now store more granular progress
feat: support for node Surge Upgrades
feat: support for updating node pool locations.
feat: support for Node Auto Provisioning
feat: support for specifying node disk size and type
docs: many minor documentation clarifications
PiperOrigin-RevId: 342116206
The nodejs_gapic_library targets were migrated to gapic-generator-typescript
which doesn't use gapic_yaml, rendering that attribute unused. Instead it uses
the proto annotations & grpc_service_config, which this change reflects.
PiperOrigin-RevId: 314206960
Fix: Deprecate SetLoggingServiceRequest.zone in line with the comments
Feature: Add resource name method signatures where appropriate
PiperOrigin-RevId: 294383128
1) Update to latest gapic-generator (has iam resource names fix for java).
2) Fix non-trivial issues with oslogin (resources defined in sibling package to the one they are used from) and monitoring.
3) Fix trivial missing dependencies in proto_library targets for other apis.
This is to prepare the repository to being populated with BUILD.bazel files for all supported apis (101 API) in all 7 languages.
PiperOrigin-RevId: 281618750
This makes googleapis forward compatible with Bazel incompatible change https://github.com/bazelbuild/bazel/issues/8922.
This CL was created by adding @rules_proto to the WORKSPACE file and then running:
find . -name BUILD.bazel | \
while read build; do \
buildifier --lint=fix --warnings=load $build; \
done
Since buildifier cannot be told not to reformat the BUILD file, some files are reformatted.
PiperOrigin-RevId: 280356106