google-apis-servicenetworking_v1 0.26.0 → 0.29.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8296adf16e41cd1e088ece44409d07181aee9f96a1335ee99c1c2d4b88beadee
4
- data.tar.gz: 16a70bb2870dc51e2a516138cd772107ed851df1fcf297b3335457766aed9bc8
3
+ metadata.gz: 5e9af5b742af9eeea07d72620eaf2f6b6ca60f3a0c466cd88acb8071bfe651f2
4
+ data.tar.gz: 664b801e877d39f5e37ff71a810c0e4b96965d9b64d755eb65ffcc4bd9af018a
5
5
  SHA512:
6
- metadata.gz: 71161d8f2bae6802e89ba15c4cde410117c088fe17aaabaf900bad3dc9a350353a7ed46cf2fc5fbb881d0b51f4a21330ca53ad04b234a5d1318bdb4af8b7f419
7
- data.tar.gz: 763270d377fa1b8baa490ae93dcc90af89566b6ff1144d9c9b51123a4f9f743dfc1aa71af79c514af2a4871e3be11128c8849f8b152322dc0b544264d354abba
6
+ metadata.gz: 29f5ce2b104339c198725115b43510dd2396cf12aa4e2f3e2601d776e1bc173f1f45f7e5bc06d8e7b068a7c2eb784f0718349d3e175477eeee7166d566d9caea
7
+ data.tar.gz: a594784b34cca3295232a56414cc43c1c3b4d9eab4ec62272340cd128cd827df79fb6d8564805bf234803ba5e61964d98233c3801494b4e2b41f112d9f549ff3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-servicenetworking_v1
2
2
 
3
+ ### v0.29.0 (2022-07-22)
4
+
5
+ * Regenerated from discovery document revision 20220720
6
+
7
+ ### v0.28.0 (2022-07-13)
8
+
9
+ * Regenerated from discovery document revision 20220711
10
+ * Regenerated using generator version 0.9.0
11
+
12
+ ### v0.27.0 (2022-07-01)
13
+
14
+ * Regenerated using generator version 0.8.0
15
+
3
16
  ### v0.26.0 (2022-06-21)
4
17
 
5
18
  * Regenerated from discovery document revision 20220619
@@ -823,6 +823,37 @@ module Google
823
823
  end
824
824
  end
825
825
 
826
+ # Cloud SQL configuration.
827
+ class CloudSqlConfig
828
+ include Google::Apis::Core::Hashable
829
+
830
+ # Peering service used for peering with the Cloud SQL project.
831
+ # Corresponds to the JSON property `service`
832
+ # @return [String]
833
+ attr_accessor :service
834
+
835
+ # The name of the umbrella network in the Cloud SQL umbrella project.
836
+ # Corresponds to the JSON property `umbrellaNetwork`
837
+ # @return [String]
838
+ attr_accessor :umbrella_network
839
+
840
+ # The project number of the Cloud SQL umbrella project.
841
+ # Corresponds to the JSON property `umbrellaProject`
842
+ # @return [Fixnum]
843
+ attr_accessor :umbrella_project
844
+
845
+ def initialize(**args)
846
+ update!(**args)
847
+ end
848
+
849
+ # Update properties of this object
850
+ def update!(**args)
851
+ @service = args[:service] if args.key?(:service)
852
+ @umbrella_network = args[:umbrella_network] if args.key?(:umbrella_network)
853
+ @umbrella_project = args[:umbrella_project] if args.key?(:umbrella_project)
854
+ end
855
+ end
856
+
826
857
  # Represents a private connection resource. A private connection is implemented
827
858
  # as a VPC Network Peering connection between a service producer's VPC network
828
859
  # and a service consumer's VPC network.
@@ -878,6 +909,11 @@ module Google
878
909
  class ConsumerConfig
879
910
  include Google::Apis::Core::Hashable
880
911
 
912
+ # Represents one or multiple Cloud SQL configurations.
913
+ # Corresponds to the JSON property `cloudsqlConfigs`
914
+ # @return [Array<Google::Apis::ServicenetworkingV1::CloudSqlConfig>]
915
+ attr_accessor :cloudsql_configs
916
+
881
917
  # Export custom routes flag value for peering from consumer to producer.
882
918
  # Corresponds to the JSON property `consumerExportCustomRoutes`
883
919
  # @return [Boolean]
@@ -961,6 +997,7 @@ module Google
961
997
 
962
998
  # Update properties of this object
963
999
  def update!(**args)
1000
+ @cloudsql_configs = args[:cloudsql_configs] if args.key?(:cloudsql_configs)
964
1001
  @consumer_export_custom_routes = args[:consumer_export_custom_routes] if args.key?(:consumer_export_custom_routes)
965
1002
  @consumer_export_subnet_routes_with_public_ip = args[:consumer_export_subnet_routes_with_public_ip] if args.key?(:consumer_export_subnet_routes_with_public_ip)
966
1003
  @consumer_import_custom_routes = args[:consumer_import_custom_routes] if args.key?(:consumer_import_custom_routes)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicenetworkingV1
18
18
  # Version of the google-apis-servicenetworking_v1 gem
19
- GEM_VERSION = "0.26.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.7.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220619"
25
+ REVISION = "20220720"
26
26
  end
27
27
  end
28
28
  end
@@ -136,6 +136,12 @@ module Google
136
136
  include Google::Apis::Core::JsonObjectSupport
137
137
  end
138
138
 
139
+ class CloudSqlConfig
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
139
145
  class Connection
140
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
147
 
@@ -825,6 +831,15 @@ module Google
825
831
  end
826
832
  end
827
833
 
834
+ class CloudSqlConfig
835
+ # @private
836
+ class Representation < Google::Apis::Core::JsonRepresentation
837
+ property :service, as: 'service'
838
+ property :umbrella_network, as: 'umbrellaNetwork'
839
+ property :umbrella_project, :numeric_string => true, as: 'umbrellaProject'
840
+ end
841
+ end
842
+
828
843
  class Connection
829
844
  # @private
830
845
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -838,6 +853,8 @@ module Google
838
853
  class ConsumerConfig
839
854
  # @private
840
855
  class Representation < Google::Apis::Core::JsonRepresentation
856
+ collection :cloudsql_configs, as: 'cloudsqlConfigs', class: Google::Apis::ServicenetworkingV1::CloudSqlConfig, decorator: Google::Apis::ServicenetworkingV1::CloudSqlConfig::Representation
857
+
841
858
  property :consumer_export_custom_routes, as: 'consumerExportCustomRoutes'
842
859
  property :consumer_export_subnet_routes_with_public_ip, as: 'consumerExportSubnetRoutesWithPublicIp'
843
860
  property :consumer_import_custom_routes, as: 'consumerImportCustomRoutes'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicenetworking_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.29.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: 2022-06-27 00:00:00.000000000 Z
11
+ date: 2022-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.6'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.6'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-servicenetworking_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.29.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
63
63
  post_install_message:
64
64
  rdoc_options: []