google-apis-networkmanagement_v1 0.87.0 → 0.88.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 358b49748d0964bd82660dd5a0e6052429f16abb8c96f4aaa7fa938c2137d8cd
|
|
4
|
+
data.tar.gz: 89c9e8cd171bfd0760e3c621c2d08e0b7ffde9fd573c4c62011203252ce123df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57c5c7ced2cfe0ac14bb9777d6027ae8c3f87e653ffe41445947fb41b379f0df1e8294f3b10127cc5855138b48ff6049f7283a6ddb20e7161e0c42b8c0a6ec9e
|
|
7
|
+
data.tar.gz: 6fbecab108a31a7dc79cd5a62c24e66d16da0cd08b6abf98e8c82ca5bb1dd01f53b97694d7b7111ec5130f95b51f7222c31563ca9907a5a91e8daf9f0905843e
|
data/CHANGELOG.md
CHANGED
|
@@ -4262,6 +4262,12 @@ module Google
|
|
|
4262
4262
|
# @return [Google::Apis::NetworkmanagementV1::StorageBucketInfo]
|
|
4263
4263
|
attr_accessor :storage_bucket
|
|
4264
4264
|
|
|
4265
|
+
# For display only. Metadata associated with a step that was redacted due to
|
|
4266
|
+
# missing permissions.
|
|
4267
|
+
# Corresponds to the JSON property `viewerPermissionMissingInfo`
|
|
4268
|
+
# @return [Google::Apis::NetworkmanagementV1::ViewerPermissionMissingInfo]
|
|
4269
|
+
attr_accessor :viewer_permission_missing_info
|
|
4270
|
+
|
|
4265
4271
|
# For display only. Metadata associated with a VPC connector.
|
|
4266
4272
|
# Corresponds to the JSON property `vpcConnector`
|
|
4267
4273
|
# @return [Google::Apis::NetworkmanagementV1::VpcConnectorInfo]
|
|
@@ -4323,6 +4329,7 @@ module Google
|
|
|
4323
4329
|
@serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
|
|
4324
4330
|
@state = args[:state] if args.key?(:state)
|
|
4325
4331
|
@storage_bucket = args[:storage_bucket] if args.key?(:storage_bucket)
|
|
4332
|
+
@viewer_permission_missing_info = args[:viewer_permission_missing_info] if args.key?(:viewer_permission_missing_info)
|
|
4326
4333
|
@vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
|
|
4327
4334
|
@vpn_gateway = args[:vpn_gateway] if args.key?(:vpn_gateway)
|
|
4328
4335
|
@vpn_tunnel = args[:vpn_tunnel] if args.key?(:vpn_tunnel)
|
|
@@ -4432,6 +4439,26 @@ module Google
|
|
|
4432
4439
|
end
|
|
4433
4440
|
end
|
|
4434
4441
|
|
|
4442
|
+
# For display only. Metadata associated with a step that was redacted due to
|
|
4443
|
+
# missing permissions.
|
|
4444
|
+
class ViewerPermissionMissingInfo
|
|
4445
|
+
include Google::Apis::Core::Hashable
|
|
4446
|
+
|
|
4447
|
+
# Types of the resources that the user does not have permission to view.
|
|
4448
|
+
# Corresponds to the JSON property `resourceTypes`
|
|
4449
|
+
# @return [Array<String>]
|
|
4450
|
+
attr_accessor :resource_types
|
|
4451
|
+
|
|
4452
|
+
def initialize(**args)
|
|
4453
|
+
update!(**args)
|
|
4454
|
+
end
|
|
4455
|
+
|
|
4456
|
+
# Update properties of this object
|
|
4457
|
+
def update!(**args)
|
|
4458
|
+
@resource_types = args[:resource_types] if args.key?(:resource_types)
|
|
4459
|
+
end
|
|
4460
|
+
end
|
|
4461
|
+
|
|
4435
4462
|
# For display only. Metadata associated with a VPC connector.
|
|
4436
4463
|
class VpcConnectorInfo
|
|
4437
4464
|
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
|
+
GEM_VERSION = "0.88.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260812"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -532,6 +532,12 @@ module Google
|
|
|
532
532
|
include Google::Apis::Core::JsonObjectSupport
|
|
533
533
|
end
|
|
534
534
|
|
|
535
|
+
class ViewerPermissionMissingInfo
|
|
536
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
537
|
+
|
|
538
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
539
|
+
end
|
|
540
|
+
|
|
535
541
|
class VpcConnectorInfo
|
|
536
542
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
537
543
|
|
|
@@ -1576,6 +1582,8 @@ module Google
|
|
|
1576
1582
|
property :state, as: 'state'
|
|
1577
1583
|
property :storage_bucket, as: 'storageBucket', class: Google::Apis::NetworkmanagementV1::StorageBucketInfo, decorator: Google::Apis::NetworkmanagementV1::StorageBucketInfo::Representation
|
|
1578
1584
|
|
|
1585
|
+
property :viewer_permission_missing_info, as: 'viewerPermissionMissingInfo', class: Google::Apis::NetworkmanagementV1::ViewerPermissionMissingInfo, decorator: Google::Apis::NetworkmanagementV1::ViewerPermissionMissingInfo::Representation
|
|
1586
|
+
|
|
1579
1587
|
property :vpc_connector, as: 'vpcConnector', class: Google::Apis::NetworkmanagementV1::VpcConnectorInfo, decorator: Google::Apis::NetworkmanagementV1::VpcConnectorInfo::Representation
|
|
1580
1588
|
|
|
1581
1589
|
property :vpn_gateway, as: 'vpnGateway', class: Google::Apis::NetworkmanagementV1::VpnGatewayInfo, decorator: Google::Apis::NetworkmanagementV1::VpnGatewayInfo::Representation
|
|
@@ -1617,6 +1625,13 @@ module Google
|
|
|
1617
1625
|
end
|
|
1618
1626
|
end
|
|
1619
1627
|
|
|
1628
|
+
class ViewerPermissionMissingInfo
|
|
1629
|
+
# @private
|
|
1630
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1631
|
+
collection :resource_types, as: 'resourceTypes'
|
|
1632
|
+
end
|
|
1633
|
+
end
|
|
1634
|
+
|
|
1620
1635
|
class VpcConnectorInfo
|
|
1621
1636
|
# @private
|
|
1622
1637
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkmanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.88.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.88.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|