google-apis-domains_v1beta1 0.39.0 → 0.40.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6419b46e2b119ea08f0a1667f847f69fb97c932e2a8c6250ae1c43c3c7d97e38
|
4
|
+
data.tar.gz: 42cb8cfff1f6255277656fc60c28209ab4a2b15c0473fcabec464b324ad5c937
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8661efee44eda44d6595daa0ea5cae4f4916bce4c440163cf4e9338fa1bc7972c59324d5d879230665375c71631a3108b7008809ca7485429facd7322f55fc9
|
7
|
+
data.tar.gz: 353d15983e9ba501e635f4f3f726dbd25cf4014073b73a19b41e51b75e442777ab8f6cdb953907fd1182f0d0cf16184d5f20fe24b2625681387af5898d9ab482
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-domains_v1beta1
|
2
2
|
|
3
|
+
### v0.40.0 (2024-12-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240724
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.39.0 (2024-06-16)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240610
|
@@ -876,6 +876,13 @@ module Google
|
|
876
876
|
class HealthCheckTargets
|
877
877
|
include Google::Apis::Core::Hashable
|
878
878
|
|
879
|
+
# The Internet IP addresses to be health checked. The format matches the format
|
880
|
+
# of ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (
|
881
|
+
# section 3.6.1)
|
882
|
+
# Corresponds to the JSON property `externalEndpoints`
|
883
|
+
# @return [Array<String>]
|
884
|
+
attr_accessor :external_endpoints
|
885
|
+
|
879
886
|
# Configuration for internal load balancers to be health checked.
|
880
887
|
# Corresponds to the JSON property `internalLoadBalancer`
|
881
888
|
# @return [Array<Google::Apis::DomainsV1beta1::LoadBalancerTarget>]
|
@@ -887,6 +894,7 @@ module Google
|
|
887
894
|
|
888
895
|
# Update properties of this object
|
889
896
|
def update!(**args)
|
897
|
+
@external_endpoints = args[:external_endpoints] if args.key?(:external_endpoints)
|
890
898
|
@internal_load_balancer = args[:internal_load_balancer] if args.key?(:internal_load_balancer)
|
891
899
|
end
|
892
900
|
end
|
@@ -1615,6 +1623,13 @@ module Google
|
|
1615
1623
|
# @return [Google::Apis::DomainsV1beta1::GeoPolicy]
|
1616
1624
|
attr_accessor :geo_policy
|
1617
1625
|
|
1626
|
+
# The selfLink attribute of the HealthCheck resource to use for this
|
1627
|
+
# RRSetRoutingPolicy. https://cloud.google.com/compute/docs/reference/rest/v1/
|
1628
|
+
# healthChecks
|
1629
|
+
# Corresponds to the JSON property `healthCheck`
|
1630
|
+
# @return [String]
|
1631
|
+
attr_accessor :health_check
|
1632
|
+
|
1618
1633
|
# Configures a RRSetRoutingPolicy such that all queries are responded with the
|
1619
1634
|
# primary_targets if they are healthy. And if all of them are unhealthy, then we
|
1620
1635
|
# fallback to a geo localized policy.
|
@@ -1640,6 +1655,7 @@ module Google
|
|
1640
1655
|
def update!(**args)
|
1641
1656
|
@geo = args[:geo] if args.key?(:geo)
|
1642
1657
|
@geo_policy = args[:geo_policy] if args.key?(:geo_policy)
|
1658
|
+
@health_check = args[:health_check] if args.key?(:health_check)
|
1643
1659
|
@primary_backup = args[:primary_backup] if args.key?(:primary_backup)
|
1644
1660
|
@wrr = args[:wrr] if args.key?(:wrr)
|
1645
1661
|
@wrr_policy = args[:wrr_policy] if args.key?(:wrr_policy)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DomainsV1beta1
|
18
18
|
# Version of the google-apis-domains_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240724"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -572,6 +572,7 @@ module Google
|
|
572
572
|
class HealthCheckTargets
|
573
573
|
# @private
|
574
574
|
class Representation < Google::Apis::Core::JsonRepresentation
|
575
|
+
collection :external_endpoints, as: 'externalEndpoints'
|
575
576
|
collection :internal_load_balancer, as: 'internalLoadBalancer', class: Google::Apis::DomainsV1beta1::LoadBalancerTarget, decorator: Google::Apis::DomainsV1beta1::LoadBalancerTarget::Representation
|
576
577
|
|
577
578
|
end
|
@@ -733,6 +734,7 @@ module Google
|
|
733
734
|
|
734
735
|
property :geo_policy, as: 'geoPolicy', class: Google::Apis::DomainsV1beta1::GeoPolicy, decorator: Google::Apis::DomainsV1beta1::GeoPolicy::Representation
|
735
736
|
|
737
|
+
property :health_check, as: 'healthCheck'
|
736
738
|
property :primary_backup, as: 'primaryBackup', class: Google::Apis::DomainsV1beta1::PrimaryBackupPolicy, decorator: Google::Apis::DomainsV1beta1::PrimaryBackupPolicy::Representation
|
737
739
|
|
738
740
|
property :wrr, as: 'wrr', class: Google::Apis::DomainsV1beta1::WrrPolicy, decorator: Google::Apis::DomainsV1beta1::WrrPolicy::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-domains_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.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-12-04 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-domains_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-domains_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-domains_v1beta1/v0.40.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-domains_v1beta1
|
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.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Domains API V1beta1
|