google-apis-apigee_v1 0.71.0 → 0.72.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: efe067255d932eeb0f9cb7eeea83854ba0c952bc00317a427f8ff7be2a033294
4
- data.tar.gz: aae184cd4fa02ef094cb5e6a7f7f382c1ab0d7c5ca31b652cc66aff6e8d98980
3
+ metadata.gz: c3d6f269083770fd0deaae6936726b894f8348132b116c6c809e7360b8d3a962
4
+ data.tar.gz: ed0f2fc0b616f2c43d291275f26029d5dbc0ffe4dd213a79bb80f5702f520020
5
5
  SHA512:
6
- metadata.gz: e689ddcd1f70f5e304287a8fd2da9563fbaeb8875490a42d699e3dec15d18bf9a5d70af8c3f5009fcbd7eed0e9460b33ad222e8b73f15e06bc38008d8aa1d6fc
7
- data.tar.gz: 33fd069247ee36b94e524bddbe015e8200f203a7971fe1460b546ebe8a283fec781a2637db68195aa28e4ccac9614d59fede4c4b6412ea9617a4a4ae93eea15b
6
+ metadata.gz: af6158380a3ac6aca59e7b7390b5f0373900db2bd2eaf574bd9aa466c2709296f25a6b007b8627ca0a2909b0048b80c2b94fc7745176529a88ed68110bce934a
7
+ data.tar.gz: ab23c505789a8382aa36ee0d7f07b01f9ae697589313b55267d95d8782e926138fd3a2d7ac1121203f977a037879ba31074e8f0f1351010ba44953ebf22e3b7c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.72.0 (2023-07-09)
4
+
5
+ * Regenerated from discovery document revision 20230630
6
+
3
7
  ### v0.71.0 (2023-07-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20230627
@@ -6291,6 +6291,21 @@ module Google
6291
6291
  # @return [String]
6292
6292
  attr_accessor :description
6293
6293
 
6294
+ # Optional. Flag that specifies whether the VPC Peering through Private Google
6295
+ # Access should be disabled between the consumer network and Apigee. Valid only
6296
+ # when RuntimeType is set to CLOUD. Required if an authorizedNetwork on the
6297
+ # consumer project is not provided, in which case the flag should be set to true.
6298
+ # The value must be set before the creation of any Apigee runtime instance and
6299
+ # can be updated only when there are no runtime instances. **Note:** Apigee will
6300
+ # be deprecating the vpc peering model that requires you to provide '
6301
+ # authorizedNetwork', by making the non-peering model as the default way of
6302
+ # provisioning Apigee organization in future. So, this will be a temporary flag
6303
+ # to enable the transition. Not supported for Apigee hybrid.
6304
+ # Corresponds to the JSON property `disableVpcPeering`
6305
+ # @return [Boolean]
6306
+ attr_accessor :disable_vpc_peering
6307
+ alias_method :disable_vpc_peering?, :disable_vpc_peering
6308
+
6294
6309
  # Display name for the Apigee organization. Unused, but reserved for future use.
6295
6310
  # Corresponds to the JSON property `displayName`
6296
6311
  # @return [String]
@@ -6389,6 +6404,7 @@ module Google
6389
6404
  @created_at = args[:created_at] if args.key?(:created_at)
6390
6405
  @customer_name = args[:customer_name] if args.key?(:customer_name)
6391
6406
  @description = args[:description] if args.key?(:description)
6407
+ @disable_vpc_peering = args[:disable_vpc_peering] if args.key?(:disable_vpc_peering)
6392
6408
  @display_name = args[:display_name] if args.key?(:display_name)
6393
6409
  @environments = args[:environments] if args.key?(:environments)
6394
6410
  @expires_at = args[:expires_at] if args.key?(:expires_at)
@@ -6616,6 +6632,21 @@ module Google
6616
6632
  # @return [String]
6617
6633
  attr_accessor :authorized_network
6618
6634
 
6635
+ # Optional. Flag that specifies whether the VPC Peering through Private Google
6636
+ # Access should be disabled between the consumer network and Apigee. Required if
6637
+ # an authorizedNetwork on the consumer project is not provided, in which case
6638
+ # the flag should be set to true. The value must be set before the creation of
6639
+ # any Apigee runtime instance and can be updated only when there are no runtime
6640
+ # instances. **Note:** Apigee will be deprecating the vpc peering model that
6641
+ # requires you to provide 'authorizedNetwork', by making the non-peering model
6642
+ # as the default way of provisioning Apigee organization in future. So, this
6643
+ # will be a temporary flag to enable the transition. Not supported for Apigee
6644
+ # hybrid.
6645
+ # Corresponds to the JSON property `disableVpcPeering`
6646
+ # @return [Boolean]
6647
+ attr_accessor :disable_vpc_peering
6648
+ alias_method :disable_vpc_peering?, :disable_vpc_peering
6649
+
6619
6650
  # Cloud Platform location for the runtime instance. Defaults to zone `us-west1-a`
6620
6651
  # . If a region is provided, `EVAL` organizations will use the region for
6621
6652
  # automatically selecting a zone for the runtime instance.
@@ -6631,6 +6662,7 @@ module Google
6631
6662
  def update!(**args)
6632
6663
  @analytics_region = args[:analytics_region] if args.key?(:analytics_region)
6633
6664
  @authorized_network = args[:authorized_network] if args.key?(:authorized_network)
6665
+ @disable_vpc_peering = args[:disable_vpc_peering] if args.key?(:disable_vpc_peering)
6634
6666
  @runtime_location = args[:runtime_location] if args.key?(:runtime_location)
6635
6667
  end
6636
6668
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigeeV1
18
18
  # Version of the google-apis-apigee_v1 gem
19
- GEM_VERSION = "0.71.0"
19
+ GEM_VERSION = "0.72.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230627"
25
+ REVISION = "20230630"
26
26
  end
27
27
  end
28
28
  end
@@ -3170,6 +3170,7 @@ module Google
3170
3170
  property :created_at, :numeric_string => true, as: 'createdAt'
3171
3171
  property :customer_name, as: 'customerName'
3172
3172
  property :description, as: 'description'
3173
+ property :disable_vpc_peering, as: 'disableVpcPeering'
3173
3174
  property :display_name, as: 'displayName'
3174
3175
  collection :environments, as: 'environments'
3175
3176
  property :expires_at, :numeric_string => true, as: 'expiresAt'
@@ -3242,6 +3243,7 @@ module Google
3242
3243
  class Representation < Google::Apis::Core::JsonRepresentation
3243
3244
  property :analytics_region, as: 'analyticsRegion'
3244
3245
  property :authorized_network, as: 'authorizedNetwork'
3246
+ property :disable_vpc_peering, as: 'disableVpcPeering'
3245
3247
  property :runtime_location, as: 'runtimeLocation'
3246
3248
  end
3247
3249
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigee_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.71.0
4
+ version: 0.72.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: 2023-07-02 00:00:00.000000000 Z
11
+ date: 2023-07-09 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/main/generated/google-apis-apigee_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.71.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.72.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
63
63
  post_install_message:
64
64
  rdoc_options: []