google-apis-networkmanagement_v1beta1 0.83.0 → 0.84.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: 3955754d7782175c6bac237d662f790768f10101717bc61f79bc142ee1706038
|
|
4
|
+
data.tar.gz: 0c23628170b2b6ad23c14b513e8ea50489ec73d16b5512c77a82d6a2fb53197c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 580d1985060026c905891b6c2faf6a4a53540d9d06f9ded63695f87520d418ec2be053c328d8116b2cf2e91a1e4f44372f70289e77ebb619f52985dd511d59d8
|
|
7
|
+
data.tar.gz: 5f878335412007c5561f658667146d415e0610ed3587312d2ed382a25c79db72c0cc1e60c9747dcce3780b4c77162533b90db1f2c47bbf746a72ceeee1710272
|
data/CHANGELOG.md
CHANGED
|
@@ -3608,6 +3608,12 @@ module Google
|
|
|
3608
3608
|
# @return [Google::Apis::NetworkmanagementV1beta1::StorageBucketInfo]
|
|
3609
3609
|
attr_accessor :storage_bucket
|
|
3610
3610
|
|
|
3611
|
+
# For display only. Metadata associated with a step that was redacted due to
|
|
3612
|
+
# missing permissions.
|
|
3613
|
+
# Corresponds to the JSON property `viewerPermissionMissingInfo`
|
|
3614
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::ViewerPermissionMissingInfo]
|
|
3615
|
+
attr_accessor :viewer_permission_missing_info
|
|
3616
|
+
|
|
3611
3617
|
# For display only. Metadata associated with a VPC connector.
|
|
3612
3618
|
# Corresponds to the JSON property `vpcConnector`
|
|
3613
3619
|
# @return [Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo]
|
|
@@ -3669,6 +3675,7 @@ module Google
|
|
|
3669
3675
|
@serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
|
|
3670
3676
|
@state = args[:state] if args.key?(:state)
|
|
3671
3677
|
@storage_bucket = args[:storage_bucket] if args.key?(:storage_bucket)
|
|
3678
|
+
@viewer_permission_missing_info = args[:viewer_permission_missing_info] if args.key?(:viewer_permission_missing_info)
|
|
3672
3679
|
@vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
|
|
3673
3680
|
@vpn_gateway = args[:vpn_gateway] if args.key?(:vpn_gateway)
|
|
3674
3681
|
@vpn_tunnel = args[:vpn_tunnel] if args.key?(:vpn_tunnel)
|
|
@@ -3778,6 +3785,26 @@ module Google
|
|
|
3778
3785
|
end
|
|
3779
3786
|
end
|
|
3780
3787
|
|
|
3788
|
+
# For display only. Metadata associated with a step that was redacted due to
|
|
3789
|
+
# missing permissions.
|
|
3790
|
+
class ViewerPermissionMissingInfo
|
|
3791
|
+
include Google::Apis::Core::Hashable
|
|
3792
|
+
|
|
3793
|
+
# Types of the resources that the user does not have permission to view.
|
|
3794
|
+
# Corresponds to the JSON property `resourceTypes`
|
|
3795
|
+
# @return [Array<String>]
|
|
3796
|
+
attr_accessor :resource_types
|
|
3797
|
+
|
|
3798
|
+
def initialize(**args)
|
|
3799
|
+
update!(**args)
|
|
3800
|
+
end
|
|
3801
|
+
|
|
3802
|
+
# Update properties of this object
|
|
3803
|
+
def update!(**args)
|
|
3804
|
+
@resource_types = args[:resource_types] if args.key?(:resource_types)
|
|
3805
|
+
end
|
|
3806
|
+
end
|
|
3807
|
+
|
|
3781
3808
|
# For display only. Metadata associated with a VPC connector.
|
|
3782
3809
|
class VpcConnectorInfo
|
|
3783
3810
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworkmanagementV1beta1
|
|
18
18
|
# Version of the google-apis-networkmanagement_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.84.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
|
|
@@ -448,6 +448,12 @@ module Google
|
|
|
448
448
|
include Google::Apis::Core::JsonObjectSupport
|
|
449
449
|
end
|
|
450
450
|
|
|
451
|
+
class ViewerPermissionMissingInfo
|
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
453
|
+
|
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
455
|
+
end
|
|
456
|
+
|
|
451
457
|
class VpcConnectorInfo
|
|
452
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
453
459
|
|
|
@@ -1319,6 +1325,8 @@ module Google
|
|
|
1319
1325
|
property :state, as: 'state'
|
|
1320
1326
|
property :storage_bucket, as: 'storageBucket', class: Google::Apis::NetworkmanagementV1beta1::StorageBucketInfo, decorator: Google::Apis::NetworkmanagementV1beta1::StorageBucketInfo::Representation
|
|
1321
1327
|
|
|
1328
|
+
property :viewer_permission_missing_info, as: 'viewerPermissionMissingInfo', class: Google::Apis::NetworkmanagementV1beta1::ViewerPermissionMissingInfo, decorator: Google::Apis::NetworkmanagementV1beta1::ViewerPermissionMissingInfo::Representation
|
|
1329
|
+
|
|
1322
1330
|
property :vpc_connector, as: 'vpcConnector', class: Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo, decorator: Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo::Representation
|
|
1323
1331
|
|
|
1324
1332
|
property :vpn_gateway, as: 'vpnGateway', class: Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo, decorator: Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo::Representation
|
|
@@ -1360,6 +1368,13 @@ module Google
|
|
|
1360
1368
|
end
|
|
1361
1369
|
end
|
|
1362
1370
|
|
|
1371
|
+
class ViewerPermissionMissingInfo
|
|
1372
|
+
# @private
|
|
1373
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1374
|
+
collection :resource_types, as: 'resourceTypes'
|
|
1375
|
+
end
|
|
1376
|
+
end
|
|
1377
|
+
|
|
1363
1378
|
class VpcConnectorInfo
|
|
1364
1379
|
# @private
|
|
1365
1380
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkmanagement_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.84.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_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.84.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|