google-apis-composer_v1beta1 0.11.0 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b88a1bcf19f0fb7922d052cc70b81b0e2e36d38af1be9d3bc68084df8d2729b7
4
- data.tar.gz: f2c71647b11051448303cfe90a5aff4450ea25453559a92bcb7ffc276c8d58bf
3
+ metadata.gz: d6b36ca675fd8637b705fff0e531250d9876673f97e4c13490970e87af9d029c
4
+ data.tar.gz: a55d1a07645d2ef110cfcc97b2b39029a01c7ff8dcea7496ef7c73a374cab102
5
5
  SHA512:
6
- metadata.gz: c3bd0a611ca8740584e5e789b2e4ece382c102f6402b0f68105fb9239132d3bd9be89a7d0fb83437fb7c17a4b27d1e669d0d93d873c370927c3c891282f98a59
7
- data.tar.gz: 841f45121e972a0e038a4c08c067183969a9af34bad851dd0c3cf6a24d30138d25758932614c919af9f1a38589e8215b72d95426f92c90de14d7c2bdeae96b9a
6
+ metadata.gz: dce08e04b31a3b80879b10ebdd8caadc03473e1673b07e39883cdf7863592624945b5632f4277c1086997c29a5170a132e04392f034747ad561b584f45f51fae
7
+ data.tar.gz: 80d83c0301ba27b77e2ca1e0bf7947ffd511f3b49cce09eff1bbc6eeaa7616d4dd617afe622408f11f5d07d5310316051dee2db53543d2469bf9c285d58cab4f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.12.0 (2021-09-01)
4
+
5
+ * Regenerated from discovery document revision 20210810
6
+
3
7
  ### v0.11.0 (2021-08-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20210728
@@ -425,7 +425,7 @@ module Google
425
425
  # Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*, this
426
426
  # field is applicable only when `use_ip_aliases` is true. Set to blank to have
427
427
  # GKE choose a range with the default size. Set to /netmask (e.g. `/14`) to have
428
- # GKE choose a range with a specific netmask. Set to a [CIDR](http://en.
428
+ # GKE choose a range with a specific netmask. Set to a [CIDR](https://en.
429
429
  # wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/
430
430
  # 14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `
431
431
  # 192.168.0.0/16`) to pick a specific range to use. Specify `
@@ -449,7 +449,7 @@ module Google
449
449
  # Composer environments in versions composer-1.*.*-airflow-*.*.*, this field is
450
450
  # applicable only when `use_ip_aliases` is true. Set to blank to have GKE choose
451
451
  # a range with the default size. Set to /netmask (e.g. `/14`) to have GKE choose
452
- # a range with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/
452
+ # a range with a specific netmask. Set to a [CIDR](https://en.wikipedia.org/wiki/
453
453
  # Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-
454
454
  # 1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`)
455
455
  # to pick a specific range to use. Specify `services_secondary_range_name` or `
@@ -680,6 +680,15 @@ module Google
680
680
  # @return [Fixnum]
681
681
  attr_accessor :disk_size_gb
682
682
 
683
+ # Optional. Deploys 'ip-masq-agent' daemon set in the GKE cluster and defines
684
+ # nonMasqueradeCIDRs equals to pod IP range so IP masquerading is used for all
685
+ # destination addresses, except between pods traffic. See: https://cloud.google.
686
+ # com/kubernetes-engine/docs/how-to/ip-masquerade-agent
687
+ # Corresponds to the JSON property `enableIpMasqAgent`
688
+ # @return [Boolean]
689
+ attr_accessor :enable_ip_masq_agent
690
+ alias_method :enable_ip_masq_agent?, :enable_ip_masq_agent
691
+
683
692
  # Configuration for controlling how IPs are allocated in the GKE cluster.
684
693
  # Corresponds to the JSON property `ipAllocationPolicy`
685
694
  # @return [Google::Apis::ComposerV1beta1::IpAllocationPolicy]
@@ -787,6 +796,7 @@ module Google
787
796
  # Update properties of this object
788
797
  def update!(**args)
789
798
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
799
+ @enable_ip_masq_agent = args[:enable_ip_masq_agent] if args.key?(:enable_ip_masq_agent)
790
800
  @ip_allocation_policy = args[:ip_allocation_policy] if args.key?(:ip_allocation_policy)
791
801
  @location = args[:location] if args.key?(:location)
792
802
  @machine_type = args[:machine_type] if args.key?(:machine_type)
@@ -986,6 +996,14 @@ module Google
986
996
  attr_accessor :enable_private_environment
987
997
  alias_method :enable_private_environment?, :enable_private_environment
988
998
 
999
+ # Optional. When enabled, IPs from public (non-RFC1918) ranges can be used for `
1000
+ # IPAllocationPolicy.cluster_ipv4_cidr_block` and `IPAllocationPolicy.
1001
+ # service_ipv4_cidr_block`.
1002
+ # Corresponds to the JSON property `enablePrivatelyUsedPublicIps`
1003
+ # @return [Boolean]
1004
+ attr_accessor :enable_privately_used_public_ips
1005
+ alias_method :enable_privately_used_public_ips?, :enable_privately_used_public_ips
1006
+
989
1007
  # Configuration options for the private GKE cluster in a Cloud Composer
990
1008
  # environment.
991
1009
  # Corresponds to the JSON property `privateClusterConfig`
@@ -1017,6 +1035,7 @@ module Google
1017
1035
  @cloud_composer_network_ipv4_reserved_range = args[:cloud_composer_network_ipv4_reserved_range] if args.key?(:cloud_composer_network_ipv4_reserved_range)
1018
1036
  @cloud_sql_ipv4_cidr_block = args[:cloud_sql_ipv4_cidr_block] if args.key?(:cloud_sql_ipv4_cidr_block)
1019
1037
  @enable_private_environment = args[:enable_private_environment] if args.key?(:enable_private_environment)
1038
+ @enable_privately_used_public_ips = args[:enable_privately_used_public_ips] if args.key?(:enable_privately_used_public_ips)
1020
1039
  @private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
1021
1040
  @web_server_ipv4_cidr_block = args[:web_server_ipv4_cidr_block] if args.key?(:web_server_ipv4_cidr_block)
1022
1041
  @web_server_ipv4_reserved_range = args[:web_server_ipv4_reserved_range] if args.key?(:web_server_ipv4_reserved_range)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComposerV1beta1
18
18
  # Version of the google-apis-composer_v1beta1 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210728"
25
+ REVISION = "20210810"
26
26
  end
27
27
  end
28
28
  end
@@ -358,6 +358,7 @@ module Google
358
358
  # @private
359
359
  class Representation < Google::Apis::Core::JsonRepresentation
360
360
  property :disk_size_gb, as: 'diskSizeGb'
361
+ property :enable_ip_masq_agent, as: 'enableIpMasqAgent'
361
362
  property :ip_allocation_policy, as: 'ipAllocationPolicy', class: Google::Apis::ComposerV1beta1::IpAllocationPolicy, decorator: Google::Apis::ComposerV1beta1::IpAllocationPolicy::Representation
362
363
 
363
364
  property :location, as: 'location'
@@ -411,6 +412,7 @@ module Google
411
412
  property :cloud_composer_network_ipv4_reserved_range, as: 'cloudComposerNetworkIpv4ReservedRange'
412
413
  property :cloud_sql_ipv4_cidr_block, as: 'cloudSqlIpv4CidrBlock'
413
414
  property :enable_private_environment, as: 'enablePrivateEnvironment'
415
+ property :enable_privately_used_public_ips, as: 'enablePrivatelyUsedPublicIps'
414
416
  property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ComposerV1beta1::PrivateClusterConfig, decorator: Google::Apis::ComposerV1beta1::PrivateClusterConfig::Representation
415
417
 
416
418
  property :web_server_ipv4_cidr_block, as: 'webServerIpv4CidrBlock'
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1beta1'
31
31
 
32
- # See, edit, configure, and delete your Google Cloud Platform data
32
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
  end
35
35
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-composer_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-09 00:00:00.000000000 Z
11
+ date: 2021-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-composer_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.12.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-composer_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []