google-apis-networkmanagement_v1 0.48.0 → 0.50.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: 27de760e1bedad37467519a1e29c2613da745a45c7ecfaacf794bd305a1f602d
|
4
|
+
data.tar.gz: 27414f37738f640eda14bca3f7d402aa4a1cdcf8f479179db03a37d38f4cfc62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8403f0bf6e8c456b268bba7bd26beecce2eaebcb83b470acad4ecee2dcd47e5e6649366884e5759703cb00f604dd20d007d88be37f8ff5f60a2b51dea0169b5
|
7
|
+
data.tar.gz: 32bfb7bc3ecb0727ffd2832f6905681160a43daa208e2271c5de25012c2a1910fac426ea60725e8bd2dd9b52a5e26885d77310d158f4331df494ce3bb5641ce2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
2
2
|
|
3
|
+
### v0.50.0 (2024-11-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241023
|
6
|
+
|
7
|
+
### v0.49.0 (2024-09-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240918
|
10
|
+
|
3
11
|
### v0.48.0 (2024-09-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240911
|
@@ -724,8 +724,15 @@ module Google
|
|
724
724
|
# @return [String]
|
725
725
|
attr_accessor :forwarding_rule_target
|
726
726
|
|
727
|
-
#
|
728
|
-
# kubernetes-engine/docs/concepts/cluster-architecture).
|
727
|
+
# DNS endpoint of [Google Kubernetes Engine cluster control plane](https://cloud.
|
728
|
+
# google.com/kubernetes-engine/docs/concepts/cluster-architecture). Requires
|
729
|
+
# gke_master_cluster to be set, can't be used simultaneoulsly with ip_address.
|
730
|
+
# Corresponds to the JSON property `fqdn`
|
731
|
+
# @return [String]
|
732
|
+
attr_accessor :fqdn
|
733
|
+
|
734
|
+
# A cluster URI for [Google Kubernetes Engine cluster control plane](https://
|
735
|
+
# cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture).
|
729
736
|
# Corresponds to the JSON property `gkeMasterCluster`
|
730
737
|
# @return [String]
|
731
738
|
attr_accessor :gke_master_cluster
|
@@ -779,6 +786,16 @@ module Google
|
|
779
786
|
# @return [String]
|
780
787
|
attr_accessor :project_id
|
781
788
|
|
789
|
+
# A [Redis Cluster](https://cloud.google.com/memorystore/docs/cluster) URI.
|
790
|
+
# Corresponds to the JSON property `redisCluster`
|
791
|
+
# @return [String]
|
792
|
+
attr_accessor :redis_cluster
|
793
|
+
|
794
|
+
# A [Redis Instance](https://cloud.google.com/memorystore/docs/redis) URI.
|
795
|
+
# Corresponds to the JSON property `redisInstance`
|
796
|
+
# @return [String]
|
797
|
+
attr_accessor :redis_instance
|
798
|
+
|
782
799
|
def initialize(**args)
|
783
800
|
update!(**args)
|
784
801
|
end
|
@@ -791,6 +808,7 @@ module Google
|
|
791
808
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
792
809
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
793
810
|
@forwarding_rule_target = args[:forwarding_rule_target] if args.key?(:forwarding_rule_target)
|
811
|
+
@fqdn = args[:fqdn] if args.key?(:fqdn)
|
794
812
|
@gke_master_cluster = args[:gke_master_cluster] if args.key?(:gke_master_cluster)
|
795
813
|
@instance = args[:instance] if args.key?(:instance)
|
796
814
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
@@ -800,6 +818,8 @@ module Google
|
|
800
818
|
@network_type = args[:network_type] if args.key?(:network_type)
|
801
819
|
@port = args[:port] if args.key?(:port)
|
802
820
|
@project_id = args[:project_id] if args.key?(:project_id)
|
821
|
+
@redis_cluster = args[:redis_cluster] if args.key?(:redis_cluster)
|
822
|
+
@redis_instance = args[:redis_instance] if args.key?(:redis_instance)
|
803
823
|
end
|
804
824
|
end
|
805
825
|
|
@@ -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.50.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241023"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -546,6 +546,7 @@ module Google
|
|
546
546
|
property :cloud_sql_instance, as: 'cloudSqlInstance'
|
547
547
|
property :forwarding_rule, as: 'forwardingRule'
|
548
548
|
property :forwarding_rule_target, as: 'forwardingRuleTarget'
|
549
|
+
property :fqdn, as: 'fqdn'
|
549
550
|
property :gke_master_cluster, as: 'gkeMasterCluster'
|
550
551
|
property :instance, as: 'instance'
|
551
552
|
property :ip_address, as: 'ipAddress'
|
@@ -555,6 +556,8 @@ module Google
|
|
555
556
|
property :network_type, as: 'networkType'
|
556
557
|
property :port, as: 'port'
|
557
558
|
property :project_id, as: 'projectId'
|
559
|
+
property :redis_cluster, as: 'redisCluster'
|
560
|
+
property :redis_instance, as: 'redisInstance'
|
558
561
|
end
|
559
562
|
end
|
560
563
|
|
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.
|
4
|
+
version: 0.50.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: 2024-
|
11
|
+
date: 2024-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.50.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Network Management API V1
|