google-apis-networkmanagement_v1 0.19.0 → 0.21.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: 8e9c04bac79a800ca0a5470de4f970ce92b8cb8a3a9c5bf25eae5ef7c9f85fbd
4
- data.tar.gz: 895c3dd3e49efe5a19008057cd667dcc89faa85c9230e387f9513ff40a87523e
3
+ metadata.gz: 0c1ed9212366375a46e96fddbbe4045a3513fe243ce079b446c44df7ea143ac6
4
+ data.tar.gz: 4cd8bc6138c4cdc073ee415ea7bc601cf4e5623c90c03b891a14b7c354983d5d
5
5
  SHA512:
6
- metadata.gz: 136527cc9c066bd663496d1e0aa0f57596d50be869221ddd4b9cc7dc02e00e4ac2fd72404f2f2f341c539980d8e44f6792b542dfb2d903e82240e212f2d17ad9
7
- data.tar.gz: 134813b54acf2db1f7ea57a83721235c6b164bc16a815fa09085c08d3ed3336ba7c6c4494d4379b4aef55c314a4db633c689330124b138815e2316365527717e
6
+ metadata.gz: 01d3d794eb2d81f47561c45e905c3c70a58516198a33009d2864f871287b6165500a70389c638aac8655dce9258f77d2a057825b29d94bc1c1824ba590947a4e
7
+ data.tar.gz: fa01445fa2eb41162f12cf750aa456bce03f57531bce2b98b6dc35c11bb6b52e6f23211025014fc0d48f1714f26d5150498b838d7bd8da0fc0153a21364cef55
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.21.0 (2022-09-18)
4
+
5
+ * Regenerated from discovery document revision 20220908
6
+
7
+ ### v0.20.0 (2022-08-20)
8
+
9
+ * Regenerated from discovery document revision 20220812
10
+ * Regenerated using generator version 0.9.0
11
+
3
12
  ### v0.19.0 (2022-07-02)
4
13
 
5
14
  * Regenerated using generator version 0.8.0
@@ -31,6 +31,13 @@ module Google
31
31
  # @return [String]
32
32
  attr_accessor :cause
33
33
 
34
+ # List of project IDs that the user has specified in the request but does not
35
+ # have permission to access network configs. Analysis is aborted in this case
36
+ # with the PERMISSION_DENIED cause.
37
+ # Corresponds to the JSON property `projectsMissingPermission`
38
+ # @return [Array<String>]
39
+ attr_accessor :projects_missing_permission
40
+
34
41
  # URI of the resource that caused the abort.
35
42
  # Corresponds to the JSON property `resourceUri`
36
43
  # @return [String]
@@ -43,6 +50,7 @@ module Google
43
50
  # Update properties of this object
44
51
  def update!(**args)
45
52
  @cause = args[:cause] if args.key?(:cause)
53
+ @projects_missing_permission = args[:projects_missing_permission] if args.key?(:projects_missing_permission)
46
54
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
47
55
  end
48
56
  end
@@ -145,28 +153,33 @@ module Google
145
153
  # members` can have the following values: * `allUsers`: A special identifier
146
154
  # that represents anyone who is on the internet; with or without a Google
147
155
  # account. * `allAuthenticatedUsers`: A special identifier that represents
148
- # anyone who is authenticated with a Google account or a service account. * `
149
- # user:`emailid``: An email address that represents a specific Google account.
150
- # For example, `alice@example.com` . * `serviceAccount:`emailid``: An email
151
- # address that represents a service account. For example, `my-other-app@appspot.
152
- # gserviceaccount.com`. * `group:`emailid``: An email address that represents a
153
- # Google group. For example, `admins@example.com`. * `deleted:user:`emailid`?uid=
154
- # `uniqueid``: An email address (plus unique identifier) representing a user
155
- # that has been recently deleted. For example, `alice@example.com?uid=
156
- # 123456789012345678901`. If the user is recovered, this value reverts to `user:`
157
- # emailid`` and the recovered user retains the role in the binding. * `deleted:
158
- # serviceAccount:`emailid`?uid=`uniqueid``: An email address (plus unique
159
- # identifier) representing a service account that has been recently deleted. For
160
- # example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`.
161
- # If the service account is undeleted, this value reverts to `serviceAccount:`
162
- # emailid`` and the undeleted service account retains the role in the binding. *
163
- # `deleted:group:`emailid`?uid=`uniqueid``: An email address (plus unique
164
- # identifier) representing a Google group that has been recently deleted. For
165
- # example, `admins@example.com?uid=123456789012345678901`. If the group is
166
- # recovered, this value reverts to `group:`emailid`` and the recovered group
167
- # retains the role in the binding. * `domain:`domain``: The G Suite domain (
168
- # primary) that represents all the users of that domain. For example, `google.
169
- # com` or `example.com`.
156
+ # anyone who is authenticated with a Google account or a service account. Does
157
+ # not include identities that come from external identity providers (IdPs)
158
+ # through identity federation. * `user:`emailid``: An email address that
159
+ # represents a specific Google account. For example, `alice@example.com` . * `
160
+ # serviceAccount:`emailid``: An email address that represents a Google service
161
+ # account. For example, `my-other-app@appspot.gserviceaccount.com`. * `
162
+ # serviceAccount:`projectid`.svc.id.goog[`namespace`/`kubernetes-sa`]`: An
163
+ # identifier for a [Kubernetes service account](https://cloud.google.com/
164
+ # kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
165
+ # project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
166
+ # email address that represents a Google group. For example, `admins@example.com`
167
+ # . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
168
+ # identifier) representing a user that has been recently deleted. For example, `
169
+ # alice@example.com?uid=123456789012345678901`. If the user is recovered, this
170
+ # value reverts to `user:`emailid`` and the recovered user retains the role in
171
+ # the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
172
+ # address (plus unique identifier) representing a service account that has been
173
+ # recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
174
+ # 123456789012345678901`. If the service account is undeleted, this value
175
+ # reverts to `serviceAccount:`emailid`` and the undeleted service account
176
+ # retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
177
+ # An email address (plus unique identifier) representing a Google group that has
178
+ # been recently deleted. For example, `admins@example.com?uid=
179
+ # 123456789012345678901`. If the group is recovered, this value reverts to `
180
+ # group:`emailid`` and the recovered group retains the role in the binding. * `
181
+ # domain:`domain``: The G Suite domain (primary) that represents all the users
182
+ # of that domain. For example, `google.com` or `example.com`.
170
183
  # Corresponds to the JSON property `members`
171
184
  # @return [Array<String>]
172
185
  attr_accessor :members
@@ -202,6 +215,62 @@ module Google
202
215
  end
203
216
  end
204
217
 
218
+ # Wrapper for Cloud Function attributes.
219
+ class CloudFunctionEndpoint
220
+ include Google::Apis::Core::Hashable
221
+
222
+ # A [Cloud Function](https://cloud.google.com/functions) name.
223
+ # Corresponds to the JSON property `uri`
224
+ # @return [String]
225
+ attr_accessor :uri
226
+
227
+ def initialize(**args)
228
+ update!(**args)
229
+ end
230
+
231
+ # Update properties of this object
232
+ def update!(**args)
233
+ @uri = args[:uri] if args.key?(:uri)
234
+ end
235
+ end
236
+
237
+ # For display only. Metadata associated with a Cloud Function.
238
+ class CloudFunctionInfo
239
+ include Google::Apis::Core::Hashable
240
+
241
+ # Name of a Cloud Function.
242
+ # Corresponds to the JSON property `displayName`
243
+ # @return [String]
244
+ attr_accessor :display_name
245
+
246
+ # Location in which the Cloud Function is deployed.
247
+ # Corresponds to the JSON property `location`
248
+ # @return [String]
249
+ attr_accessor :location
250
+
251
+ # URI of a Cloud Function.
252
+ # Corresponds to the JSON property `uri`
253
+ # @return [String]
254
+ attr_accessor :uri
255
+
256
+ # Latest successfully deployed version id of the Cloud Function.
257
+ # Corresponds to the JSON property `versionId`
258
+ # @return [Fixnum]
259
+ attr_accessor :version_id
260
+
261
+ def initialize(**args)
262
+ update!(**args)
263
+ end
264
+
265
+ # Update properties of this object
266
+ def update!(**args)
267
+ @display_name = args[:display_name] if args.key?(:display_name)
268
+ @location = args[:location] if args.key?(:location)
269
+ @uri = args[:uri] if args.key?(:uri)
270
+ @version_id = args[:version_id] if args.key?(:version_id)
271
+ end
272
+ end
273
+
205
274
  # For display only. Metadata associated with a Cloud SQL instance.
206
275
  class CloudSqlInstanceInfo
207
276
  include Google::Apis::Core::Hashable
@@ -404,6 +473,11 @@ module Google
404
473
  class Endpoint
405
474
  include Google::Apis::Core::Hashable
406
475
 
476
+ # Wrapper for Cloud Function attributes.
477
+ # Corresponds to the JSON property `cloudFunction`
478
+ # @return [Google::Apis::NetworkmanagementV1::CloudFunctionEndpoint]
479
+ attr_accessor :cloud_function
480
+
407
481
  # A [Cloud SQL](https://cloud.google.com/sql) instance URI.
408
482
  # Corresponds to the JSON property `cloudSqlInstance`
409
483
  # @return [String]
@@ -461,6 +535,7 @@ module Google
461
535
 
462
536
  # Update properties of this object
463
537
  def update!(**args)
538
+ @cloud_function = args[:cloud_function] if args.key?(:cloud_function)
464
539
  @cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
465
540
  @gke_master_cluster = args[:gke_master_cluster] if args.key?(:gke_master_cluster)
466
541
  @instance = args[:instance] if args.key?(:instance)
@@ -1534,6 +1609,11 @@ module Google
1534
1609
  attr_accessor :causes_drop
1535
1610
  alias_method :causes_drop?, :causes_drop
1536
1611
 
1612
+ # For display only. Metadata associated with a Cloud Function.
1613
+ # Corresponds to the JSON property `cloudFunction`
1614
+ # @return [Google::Apis::NetworkmanagementV1::CloudFunctionInfo]
1615
+ attr_accessor :cloud_function
1616
+
1537
1617
  # For display only. Metadata associated with a Cloud SQL instance.
1538
1618
  # Corresponds to the JSON property `cloudSqlInstance`
1539
1619
  # @return [Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo]
@@ -1613,6 +1693,11 @@ module Google
1613
1693
  # @return [String]
1614
1694
  attr_accessor :state
1615
1695
 
1696
+ # For display only. Metadata associated with a VPC connector.
1697
+ # Corresponds to the JSON property `vpcConnector`
1698
+ # @return [Google::Apis::NetworkmanagementV1::VpcConnectorInfo]
1699
+ attr_accessor :vpc_connector
1700
+
1616
1701
  # For display only. Metadata associated with a Compute Engine VPN gateway.
1617
1702
  # Corresponds to the JSON property `vpnGateway`
1618
1703
  # @return [Google::Apis::NetworkmanagementV1::VpnGatewayInfo]
@@ -1631,6 +1716,7 @@ module Google
1631
1716
  def update!(**args)
1632
1717
  @abort = args[:abort] if args.key?(:abort)
1633
1718
  @causes_drop = args[:causes_drop] if args.key?(:causes_drop)
1719
+ @cloud_function = args[:cloud_function] if args.key?(:cloud_function)
1634
1720
  @cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
1635
1721
  @deliver = args[:deliver] if args.key?(:deliver)
1636
1722
  @description = args[:description] if args.key?(:description)
@@ -1646,6 +1732,7 @@ module Google
1646
1732
  @project_id = args[:project_id] if args.key?(:project_id)
1647
1733
  @route = args[:route] if args.key?(:route)
1648
1734
  @state = args[:state] if args.key?(:state)
1735
+ @vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
1649
1736
  @vpn_gateway = args[:vpn_gateway] if args.key?(:vpn_gateway)
1650
1737
  @vpn_tunnel = args[:vpn_tunnel] if args.key?(:vpn_tunnel)
1651
1738
  end
@@ -1727,6 +1814,37 @@ module Google
1727
1814
  end
1728
1815
  end
1729
1816
 
1817
+ # For display only. Metadata associated with a VPC connector.
1818
+ class VpcConnectorInfo
1819
+ include Google::Apis::Core::Hashable
1820
+
1821
+ # Name of a VPC connector.
1822
+ # Corresponds to the JSON property `displayName`
1823
+ # @return [String]
1824
+ attr_accessor :display_name
1825
+
1826
+ # Location in which the VPC connector is deployed.
1827
+ # Corresponds to the JSON property `location`
1828
+ # @return [String]
1829
+ attr_accessor :location
1830
+
1831
+ # URI of a VPC connector.
1832
+ # Corresponds to the JSON property `uri`
1833
+ # @return [String]
1834
+ attr_accessor :uri
1835
+
1836
+ def initialize(**args)
1837
+ update!(**args)
1838
+ end
1839
+
1840
+ # Update properties of this object
1841
+ def update!(**args)
1842
+ @display_name = args[:display_name] if args.key?(:display_name)
1843
+ @location = args[:location] if args.key?(:location)
1844
+ @uri = args[:uri] if args.key?(:uri)
1845
+ end
1846
+ end
1847
+
1730
1848
  # For display only. Metadata associated with a Compute Engine VPN gateway.
1731
1849
  class VpnGatewayInfo
1732
1850
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkmanagementV1
18
18
  # Version of the google-apis-networkmanagement_v1 gem
19
- GEM_VERSION = "0.19.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220504"
25
+ REVISION = "20220908"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,18 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class CloudFunctionEndpoint
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
61
+ class CloudFunctionInfo
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
55
67
  class CloudSqlInstanceInfo
56
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
69
 
@@ -244,6 +256,12 @@ module Google
244
256
  include Google::Apis::Core::JsonObjectSupport
245
257
  end
246
258
 
259
+ class VpcConnectorInfo
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
247
265
  class VpnGatewayInfo
248
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
267
 
@@ -260,6 +278,7 @@ module Google
260
278
  # @private
261
279
  class Representation < Google::Apis::Core::JsonRepresentation
262
280
  property :cause, as: 'cause'
281
+ collection :projects_missing_permission, as: 'projectsMissingPermission'
263
282
  property :resource_uri, as: 'resourceUri'
264
283
  end
265
284
  end
@@ -297,6 +316,23 @@ module Google
297
316
  end
298
317
  end
299
318
 
319
+ class CloudFunctionEndpoint
320
+ # @private
321
+ class Representation < Google::Apis::Core::JsonRepresentation
322
+ property :uri, as: 'uri'
323
+ end
324
+ end
325
+
326
+ class CloudFunctionInfo
327
+ # @private
328
+ class Representation < Google::Apis::Core::JsonRepresentation
329
+ property :display_name, as: 'displayName'
330
+ property :location, as: 'location'
331
+ property :uri, as: 'uri'
332
+ property :version_id, :numeric_string => true, as: 'versionId'
333
+ end
334
+ end
335
+
300
336
  class CloudSqlInstanceInfo
301
337
  # @private
302
338
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -354,6 +390,8 @@ module Google
354
390
  class Endpoint
355
391
  # @private
356
392
  class Representation < Google::Apis::Core::JsonRepresentation
393
+ property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1::CloudFunctionEndpoint, decorator: Google::Apis::NetworkmanagementV1::CloudFunctionEndpoint::Representation
394
+
357
395
  property :cloud_sql_instance, as: 'cloudSqlInstance'
358
396
  property :gke_master_cluster, as: 'gkeMasterCluster'
359
397
  property :instance, as: 'instance'
@@ -614,6 +652,8 @@ module Google
614
652
  property :abort, as: 'abort', class: Google::Apis::NetworkmanagementV1::AbortInfo, decorator: Google::Apis::NetworkmanagementV1::AbortInfo::Representation
615
653
 
616
654
  property :causes_drop, as: 'causesDrop'
655
+ property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1::CloudFunctionInfo, decorator: Google::Apis::NetworkmanagementV1::CloudFunctionInfo::Representation
656
+
617
657
  property :cloud_sql_instance, as: 'cloudSqlInstance', class: Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo, decorator: Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo::Representation
618
658
 
619
659
  property :deliver, as: 'deliver', class: Google::Apis::NetworkmanagementV1::DeliverInfo, decorator: Google::Apis::NetworkmanagementV1::DeliverInfo::Representation
@@ -641,6 +681,8 @@ module Google
641
681
  property :route, as: 'route', class: Google::Apis::NetworkmanagementV1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1::RouteInfo::Representation
642
682
 
643
683
  property :state, as: 'state'
684
+ property :vpc_connector, as: 'vpcConnector', class: Google::Apis::NetworkmanagementV1::VpcConnectorInfo, decorator: Google::Apis::NetworkmanagementV1::VpcConnectorInfo::Representation
685
+
644
686
  property :vpn_gateway, as: 'vpnGateway', class: Google::Apis::NetworkmanagementV1::VpnGatewayInfo, decorator: Google::Apis::NetworkmanagementV1::VpnGatewayInfo::Representation
645
687
 
646
688
  property :vpn_tunnel, as: 'vpnTunnel', class: Google::Apis::NetworkmanagementV1::VpnTunnelInfo, decorator: Google::Apis::NetworkmanagementV1::VpnTunnelInfo::Representation
@@ -672,6 +714,15 @@ module Google
672
714
  end
673
715
  end
674
716
 
717
+ class VpcConnectorInfo
718
+ # @private
719
+ class Representation < Google::Apis::Core::JsonRepresentation
720
+ property :display_name, as: 'displayName'
721
+ property :location, as: 'location'
722
+ property :uri, as: 'uri'
723
+ end
724
+ end
725
+
675
726
  class VpnGatewayInfo
676
727
  # @private
677
728
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkmanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.21.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-07-04 00:00:00.000000000 Z
11
+ date: 2022-09-19 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.7'
19
+ version: 0.7.2
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.7'
29
+ version: 0.7.2
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-networkmanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.21.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []