google-apis-networkmanagement_v1beta1 0.85.0 → 0.86.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: 549cb6c0372d891ec1c8d7f3012ed880670002a6725e425d63f560cb418d0ffe
|
|
4
|
+
data.tar.gz: 661e845de9563b5481d65a3f8d014bcdd75e7ee6a538b920055662587d1be569
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e242214baa43a96a255bbc2c9c69ce2e4186aceb482252e5a7f6e85960a98ed5233d7193fe43555c2199f6c19abc70049a4b56d234d5d43da5b6e9da37e17cc
|
|
7
|
+
data.tar.gz: 14daf8e3c8fc4f84e88bd3c2165f86bd8549973de8d6fd2da54f7f8c6dce4220fea868c15ec5a1045e21b8fccb0e9cf3f521e1b6edd617a0e50eaabac1e84e11
|
data/CHANGELOG.md
CHANGED
|
@@ -736,6 +736,52 @@ module Google
|
|
|
736
736
|
end
|
|
737
737
|
end
|
|
738
738
|
|
|
739
|
+
# For display only. Metadata associated with a serverless direct VPC ingress
|
|
740
|
+
# connection.
|
|
741
|
+
class DirectVpcIngressConnectionInfo
|
|
742
|
+
include Google::Apis::Core::Hashable
|
|
743
|
+
|
|
744
|
+
# URI of the VPC network for direct ingress. Format: `projects/`project_id`/
|
|
745
|
+
# global/networks/`network_id``
|
|
746
|
+
# Corresponds to the JSON property `networkUri`
|
|
747
|
+
# @return [String]
|
|
748
|
+
attr_accessor :network_uri
|
|
749
|
+
|
|
750
|
+
# Region in which the Direct VPC ingress is deployed.
|
|
751
|
+
# Corresponds to the JSON property `region`
|
|
752
|
+
# @return [String]
|
|
753
|
+
attr_accessor :region
|
|
754
|
+
|
|
755
|
+
# Selected destination IP address, from the selected IP range.
|
|
756
|
+
# Corresponds to the JSON property `selectedIpAddress`
|
|
757
|
+
# @return [String]
|
|
758
|
+
attr_accessor :selected_ip_address
|
|
759
|
+
|
|
760
|
+
# Selected IP range.
|
|
761
|
+
# Corresponds to the JSON property `selectedIpRange`
|
|
762
|
+
# @return [String]
|
|
763
|
+
attr_accessor :selected_ip_range
|
|
764
|
+
|
|
765
|
+
# URI of the subnetwork for direct ingress. Format: `projects/`project_id`/
|
|
766
|
+
# regions/`region`/subnetworks/`subnetwork_id``
|
|
767
|
+
# Corresponds to the JSON property `subnetworkUri`
|
|
768
|
+
# @return [String]
|
|
769
|
+
attr_accessor :subnetwork_uri
|
|
770
|
+
|
|
771
|
+
def initialize(**args)
|
|
772
|
+
update!(**args)
|
|
773
|
+
end
|
|
774
|
+
|
|
775
|
+
# Update properties of this object
|
|
776
|
+
def update!(**args)
|
|
777
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
778
|
+
@region = args[:region] if args.key?(:region)
|
|
779
|
+
@selected_ip_address = args[:selected_ip_address] if args.key?(:selected_ip_address)
|
|
780
|
+
@selected_ip_range = args[:selected_ip_range] if args.key?(:selected_ip_range)
|
|
781
|
+
@subnetwork_uri = args[:subnetwork_uri] if args.key?(:subnetwork_uri)
|
|
782
|
+
end
|
|
783
|
+
end
|
|
784
|
+
|
|
739
785
|
# Details of the final state "drop" and associated resource.
|
|
740
786
|
class DropInfo
|
|
741
787
|
include Google::Apis::Core::Hashable
|
|
@@ -3468,6 +3514,12 @@ module Google
|
|
|
3468
3514
|
# @return [Google::Apis::NetworkmanagementV1beta1::DirectVpcEgressConnectionInfo]
|
|
3469
3515
|
attr_accessor :direct_vpc_egress_connection
|
|
3470
3516
|
|
|
3517
|
+
# For display only. Metadata associated with a serverless direct VPC ingress
|
|
3518
|
+
# connection.
|
|
3519
|
+
# Corresponds to the JSON property `directVpcIngressConnection`
|
|
3520
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::DirectVpcIngressConnectionInfo]
|
|
3521
|
+
attr_accessor :direct_vpc_ingress_connection
|
|
3522
|
+
|
|
3471
3523
|
# For display only. Metadata associated with a Private Connection.
|
|
3472
3524
|
# Corresponds to the JSON property `dmsPrivateConnection`
|
|
3473
3525
|
# @return [Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo]
|
|
@@ -3664,6 +3716,7 @@ module Google
|
|
|
3664
3716
|
@deliver = args[:deliver] if args.key?(:deliver)
|
|
3665
3717
|
@description = args[:description] if args.key?(:description)
|
|
3666
3718
|
@direct_vpc_egress_connection = args[:direct_vpc_egress_connection] if args.key?(:direct_vpc_egress_connection)
|
|
3719
|
+
@direct_vpc_ingress_connection = args[:direct_vpc_ingress_connection] if args.key?(:direct_vpc_ingress_connection)
|
|
3667
3720
|
@dms_private_connection = args[:dms_private_connection] if args.key?(:dms_private_connection)
|
|
3668
3721
|
@drop = args[:drop] if args.key?(:drop)
|
|
3669
3722
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
|
@@ -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.86.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 = "20260909"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -118,6 +118,12 @@ module Google
|
|
|
118
118
|
include Google::Apis::Core::JsonObjectSupport
|
|
119
119
|
end
|
|
120
120
|
|
|
121
|
+
class DirectVpcIngressConnectionInfo
|
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
|
+
|
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
125
|
+
end
|
|
126
|
+
|
|
121
127
|
class DropInfo
|
|
122
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
129
|
|
|
@@ -645,6 +651,17 @@ module Google
|
|
|
645
651
|
end
|
|
646
652
|
end
|
|
647
653
|
|
|
654
|
+
class DirectVpcIngressConnectionInfo
|
|
655
|
+
# @private
|
|
656
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
657
|
+
property :network_uri, as: 'networkUri'
|
|
658
|
+
property :region, as: 'region'
|
|
659
|
+
property :selected_ip_address, as: 'selectedIpAddress'
|
|
660
|
+
property :selected_ip_range, as: 'selectedIpRange'
|
|
661
|
+
property :subnetwork_uri, as: 'subnetworkUri'
|
|
662
|
+
end
|
|
663
|
+
end
|
|
664
|
+
|
|
648
665
|
class DropInfo
|
|
649
666
|
# @private
|
|
650
667
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1271,6 +1288,8 @@ module Google
|
|
|
1271
1288
|
property :description, as: 'description'
|
|
1272
1289
|
property :direct_vpc_egress_connection, as: 'directVpcEgressConnection', class: Google::Apis::NetworkmanagementV1beta1::DirectVpcEgressConnectionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DirectVpcEgressConnectionInfo::Representation
|
|
1273
1290
|
|
|
1291
|
+
property :direct_vpc_ingress_connection, as: 'directVpcIngressConnection', class: Google::Apis::NetworkmanagementV1beta1::DirectVpcIngressConnectionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DirectVpcIngressConnectionInfo::Representation
|
|
1292
|
+
|
|
1274
1293
|
property :dms_private_connection, as: 'dmsPrivateConnection', class: Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo::Representation
|
|
1275
1294
|
|
|
1276
1295
|
property :drop, as: 'drop', class: Google::Apis::NetworkmanagementV1beta1::DropInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DropInfo::Representation
|
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.86.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.86.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:
|