google-apis-domains_v1alpha2 0.38.0 → 0.39.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: a8aff4e0529c287e1d0057b89ab9d2f7af9f6ea1a4ee0ee3b93acd9e3d0808d7
4
- data.tar.gz: 660ee853f039966e85f955ce55edf768f39b7aa70645ea40126b5c5d9a35a553
3
+ metadata.gz: 5c10f033a8b1e1cfe4a45bfa955a0f1a540c4f7273da030aef396acb549e9f5e
4
+ data.tar.gz: 33b59d5f6bb48e383b32dde1dc7498786c817d18ab35f69772fe84fb64d0fdea
5
5
  SHA512:
6
- metadata.gz: 85154bb304f95a0d3bef3be05f1196e0f806ff7c13c0f8dde8e0d3b8d56c862f19fd944e1fb7d1b8246ed68bd34733faaa6b29513b39f42ca76eeef8d246c273
7
- data.tar.gz: 020ee1ed2dbb2c6dcfe237bc43e6efa3717ca4d92b3ac2778f91b5fdb15c6fe1e19f8750b729e67c3b72bc34612a171bf69f44dc980c0a3a1c02e4df48537e9b
6
+ metadata.gz: bc73c542921bb484a4053b7eef793afbf74b3a66d5ccbd6f884a87b189886de1d3d0967251142193bca61884d5510342f966b35a6f035c1ac1c04a744ee7af8d
7
+ data.tar.gz: 2caa71003b2d518e34d1513f06c819b33a3a1eea18f8c17edb4cc8105cf8978adad50534741fd067b013454aa91ed5b46b39a87a169fcd2f2f229e6a5cf0bd71
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-domains_v1alpha2
2
2
 
3
+ ### v0.39.0 (2024-06-16)
4
+
5
+ * Regenerated from discovery document revision 20240610
6
+
3
7
  ### v0.38.0 (2024-06-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20240603
@@ -466,6 +466,19 @@ module Google
466
466
  # @return [Google::Apis::DomainsV1alpha2::GoogleDomainsDns]
467
467
  attr_accessor :google_domains_dns
468
468
 
469
+ # Output only. Indicates if this `Registration` has configured one of the
470
+ # following deprecated Google Domains DNS features: * Domain forwarding (HTTP `
471
+ # 301` and `302` response status codes), * Email forwarding. See https://cloud.
472
+ # google.com/domains/docs/deprecations/feature-deprecations for more details. If
473
+ # any of these features is enabled call the `
474
+ # RetrieveGoogleDomainsForwardingConfig` method to get details about the feature'
475
+ # s configuration. A forwarding configuration might not work correctly if
476
+ # required DNS records are not present in the domain's authoritative DNS Zone.
477
+ # Corresponds to the JSON property `googleDomainsRedirectsDataAvailable`
478
+ # @return [Boolean]
479
+ attr_accessor :google_domains_redirects_data_available
480
+ alias_method :google_domains_redirects_data_available?, :google_domains_redirects_data_available
481
+
469
482
  def initialize(**args)
470
483
  update!(**args)
471
484
  end
@@ -475,6 +488,7 @@ module Google
475
488
  @custom_dns = args[:custom_dns] if args.key?(:custom_dns)
476
489
  @glue_records = args[:glue_records] if args.key?(:glue_records)
477
490
  @google_domains_dns = args[:google_domains_dns] if args.key?(:google_domains_dns)
491
+ @google_domains_redirects_data_available = args[:google_domains_redirects_data_available] if args.key?(:google_domains_redirects_data_available)
478
492
  end
479
493
  end
480
494
 
@@ -699,6 +713,82 @@ module Google
699
713
  end
700
714
  end
701
715
 
716
+ # Configures a `RRSetRoutingPolicy` that routes based on the geo location of the
717
+ # querying user.
718
+ class GeoPolicy
719
+ include Google::Apis::Core::Hashable
720
+
721
+ # Without fencing, if health check fails for all configured items in the current
722
+ # geo bucket, we failover to the next nearest geo bucket. With fencing, if
723
+ # health checking is enabled, as long as some targets in the current geo bucket
724
+ # are healthy, we return only the healthy targets. However, if all targets are
725
+ # unhealthy, we don't failover to the next nearest bucket; instead, we return
726
+ # all the items in the current bucket even when all targets are unhealthy.
727
+ # Corresponds to the JSON property `enableFencing`
728
+ # @return [Boolean]
729
+ attr_accessor :enable_fencing
730
+ alias_method :enable_fencing?, :enable_fencing
731
+
732
+ # The primary geo routing configuration. If there are multiple items with the
733
+ # same location, an error is returned instead.
734
+ # Corresponds to the JSON property `item`
735
+ # @return [Array<Google::Apis::DomainsV1alpha2::GeoPolicyItem>]
736
+ attr_accessor :item
737
+
738
+ def initialize(**args)
739
+ update!(**args)
740
+ end
741
+
742
+ # Update properties of this object
743
+ def update!(**args)
744
+ @enable_fencing = args[:enable_fencing] if args.key?(:enable_fencing)
745
+ @item = args[:item] if args.key?(:item)
746
+ end
747
+ end
748
+
749
+ # ResourceRecordSet data for one geo location.
750
+ class GeoPolicyItem
751
+ include Google::Apis::Core::Hashable
752
+
753
+ # HealthCheckTargets describes endpoints to health-check when responding to
754
+ # Routing Policy queries. Only the healthy endpoints will be included in the
755
+ # response.
756
+ # Corresponds to the JSON property `healthCheckedTargets`
757
+ # @return [Google::Apis::DomainsV1alpha2::HealthCheckTargets]
758
+ attr_accessor :health_checked_targets
759
+
760
+ # The geo-location granularity is a GCP region. This location string should
761
+ # correspond to a GCP region. e.g. "us-east1", "southamerica-east1", "asia-east1"
762
+ # , etc.
763
+ # Corresponds to the JSON property `location`
764
+ # @return [String]
765
+ attr_accessor :location
766
+
767
+ #
768
+ # Corresponds to the JSON property `rrdata`
769
+ # @return [Array<String>]
770
+ attr_accessor :rrdata
771
+
772
+ # DNSSEC generated signatures for all the `rrdata` within this item. If health
773
+ # checked targets are provided for DNSSEC enabled zones, there's a restriction
774
+ # of 1 IP address per item.
775
+ # Corresponds to the JSON property `signatureRrdata`
776
+ # @return [Array<String>]
777
+ attr_accessor :signature_rrdata
778
+
779
+ def initialize(**args)
780
+ update!(**args)
781
+ end
782
+
783
+ # Update properties of this object
784
+ def update!(**args)
785
+ @health_checked_targets = args[:health_checked_targets] if args.key?(:health_checked_targets)
786
+ @location = args[:location] if args.key?(:location)
787
+ @rrdata = args[:rrdata] if args.key?(:rrdata)
788
+ @signature_rrdata = args[:signature_rrdata] if args.key?(:signature_rrdata)
789
+ end
790
+ end
791
+
702
792
  # Defines a host on your domain that is a DNS name server for your domain and/or
703
793
  # other domains. Glue records are a way of making the IP address of a name
704
794
  # server known, even when it serves DNS queries for its parent domain. For
@@ -780,6 +870,27 @@ module Google
780
870
  end
781
871
  end
782
872
 
873
+ # HealthCheckTargets describes endpoints to health-check when responding to
874
+ # Routing Policy queries. Only the healthy endpoints will be included in the
875
+ # response.
876
+ class HealthCheckTargets
877
+ include Google::Apis::Core::Hashable
878
+
879
+ # Configuration for internal load balancers to be health checked.
880
+ # Corresponds to the JSON property `internalLoadBalancer`
881
+ # @return [Array<Google::Apis::DomainsV1alpha2::LoadBalancerTarget>]
882
+ attr_accessor :internal_load_balancer
883
+
884
+ def initialize(**args)
885
+ update!(**args)
886
+ end
887
+
888
+ # Update properties of this object
889
+ def update!(**args)
890
+ @internal_load_balancer = args[:internal_load_balancer] if args.key?(:internal_load_balancer)
891
+ end
892
+ end
893
+
783
894
  # Deprecated: For more information, see [Cloud Domains feature deprecation](
784
895
  # https://cloud.google.com/domains/docs/deprecations/feature-deprecations).
785
896
  # Request for the `ImportDomain` method.
@@ -904,6 +1015,68 @@ module Google
904
1015
  end
905
1016
  end
906
1017
 
1018
+ # The configuration for an individual load balancer to health check.
1019
+ class LoadBalancerTarget
1020
+ include Google::Apis::Core::Hashable
1021
+
1022
+ # The frontend IP address of the load balancer to health check.
1023
+ # Corresponds to the JSON property `ipAddress`
1024
+ # @return [String]
1025
+ attr_accessor :ip_address
1026
+
1027
+ # The protocol of the load balancer to health check.
1028
+ # Corresponds to the JSON property `ipProtocol`
1029
+ # @return [String]
1030
+ attr_accessor :ip_protocol
1031
+
1032
+ # The type of load balancer specified by this target. This value must match the
1033
+ # configuration of the load balancer located at the LoadBalancerTarget's IP
1034
+ # address, port, and region. Use the following: - *regionalL4ilb*: for a
1035
+ # regional internal passthrough Network Load Balancer. - *regionalL7ilb*: for a
1036
+ # regional internal Application Load Balancer. - *globalL7ilb*: for a global
1037
+ # internal Application Load Balancer.
1038
+ # Corresponds to the JSON property `loadBalancerType`
1039
+ # @return [String]
1040
+ attr_accessor :load_balancer_type
1041
+
1042
+ # The fully qualified URL of the network that the load balancer is attached to.
1043
+ # This should be formatted like `https://www.googleapis.com/compute/v1/projects/`
1044
+ # project`/global/networks/`network``.
1045
+ # Corresponds to the JSON property `networkUrl`
1046
+ # @return [String]
1047
+ attr_accessor :network_url
1048
+
1049
+ # The configured port of the load balancer.
1050
+ # Corresponds to the JSON property `port`
1051
+ # @return [String]
1052
+ attr_accessor :port
1053
+
1054
+ # The project ID in which the load balancer is located.
1055
+ # Corresponds to the JSON property `project`
1056
+ # @return [String]
1057
+ attr_accessor :project
1058
+
1059
+ # The region in which the load balancer is located.
1060
+ # Corresponds to the JSON property `region`
1061
+ # @return [String]
1062
+ attr_accessor :region
1063
+
1064
+ def initialize(**args)
1065
+ update!(**args)
1066
+ end
1067
+
1068
+ # Update properties of this object
1069
+ def update!(**args)
1070
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
1071
+ @ip_protocol = args[:ip_protocol] if args.key?(:ip_protocol)
1072
+ @load_balancer_type = args[:load_balancer_type] if args.key?(:load_balancer_type)
1073
+ @network_url = args[:network_url] if args.key?(:network_url)
1074
+ @port = args[:port] if args.key?(:port)
1075
+ @project = args[:project] if args.key?(:project)
1076
+ @region = args[:region] if args.key?(:region)
1077
+ end
1078
+ end
1079
+
907
1080
  # A resource that represents a Google Cloud location.
908
1081
  class Location
909
1082
  include Google::Apis::Core::Hashable
@@ -1387,6 +1560,92 @@ module Google
1387
1560
  end
1388
1561
  end
1389
1562
 
1563
+ # Configures a RRSetRoutingPolicy such that all queries are responded with the
1564
+ # primary_targets if they are healthy. And if all of them are unhealthy, then we
1565
+ # fallback to a geo localized policy.
1566
+ class PrimaryBackupPolicy
1567
+ include Google::Apis::Core::Hashable
1568
+
1569
+ # Configures a `RRSetRoutingPolicy` that routes based on the geo location of the
1570
+ # querying user.
1571
+ # Corresponds to the JSON property `backupGeoTargets`
1572
+ # @return [Google::Apis::DomainsV1alpha2::GeoPolicy]
1573
+ attr_accessor :backup_geo_targets
1574
+
1575
+ # HealthCheckTargets describes endpoints to health-check when responding to
1576
+ # Routing Policy queries. Only the healthy endpoints will be included in the
1577
+ # response.
1578
+ # Corresponds to the JSON property `primaryTargets`
1579
+ # @return [Google::Apis::DomainsV1alpha2::HealthCheckTargets]
1580
+ attr_accessor :primary_targets
1581
+
1582
+ # When serving state is `PRIMARY`, this field provides the option of sending a
1583
+ # small percentage of the traffic to the backup targets.
1584
+ # Corresponds to the JSON property `trickleTraffic`
1585
+ # @return [Float]
1586
+ attr_accessor :trickle_traffic
1587
+
1588
+ def initialize(**args)
1589
+ update!(**args)
1590
+ end
1591
+
1592
+ # Update properties of this object
1593
+ def update!(**args)
1594
+ @backup_geo_targets = args[:backup_geo_targets] if args.key?(:backup_geo_targets)
1595
+ @primary_targets = args[:primary_targets] if args.key?(:primary_targets)
1596
+ @trickle_traffic = args[:trickle_traffic] if args.key?(:trickle_traffic)
1597
+ end
1598
+ end
1599
+
1600
+ # A RRSetRoutingPolicy represents ResourceRecordSet data that is returned
1601
+ # dynamically with the response varying based on configured properties such as
1602
+ # geolocation or by weighted random selection.
1603
+ class RrSetRoutingPolicy
1604
+ include Google::Apis::Core::Hashable
1605
+
1606
+ # Configures a `RRSetRoutingPolicy` that routes based on the geo location of the
1607
+ # querying user.
1608
+ # Corresponds to the JSON property `geo`
1609
+ # @return [Google::Apis::DomainsV1alpha2::GeoPolicy]
1610
+ attr_accessor :geo
1611
+
1612
+ # Configures a `RRSetRoutingPolicy` that routes based on the geo location of the
1613
+ # querying user.
1614
+ # Corresponds to the JSON property `geoPolicy`
1615
+ # @return [Google::Apis::DomainsV1alpha2::GeoPolicy]
1616
+ attr_accessor :geo_policy
1617
+
1618
+ # Configures a RRSetRoutingPolicy such that all queries are responded with the
1619
+ # primary_targets if they are healthy. And if all of them are unhealthy, then we
1620
+ # fallback to a geo localized policy.
1621
+ # Corresponds to the JSON property `primaryBackup`
1622
+ # @return [Google::Apis::DomainsV1alpha2::PrimaryBackupPolicy]
1623
+ attr_accessor :primary_backup
1624
+
1625
+ # Configures a RRSetRoutingPolicy that routes in a weighted round robin fashion.
1626
+ # Corresponds to the JSON property `wrr`
1627
+ # @return [Google::Apis::DomainsV1alpha2::WrrPolicy]
1628
+ attr_accessor :wrr
1629
+
1630
+ # Configures a RRSetRoutingPolicy that routes in a weighted round robin fashion.
1631
+ # Corresponds to the JSON property `wrrPolicy`
1632
+ # @return [Google::Apis::DomainsV1alpha2::WrrPolicy]
1633
+ attr_accessor :wrr_policy
1634
+
1635
+ def initialize(**args)
1636
+ update!(**args)
1637
+ end
1638
+
1639
+ # Update properties of this object
1640
+ def update!(**args)
1641
+ @geo = args[:geo] if args.key?(:geo)
1642
+ @geo_policy = args[:geo_policy] if args.key?(:geo_policy)
1643
+ @primary_backup = args[:primary_backup] if args.key?(:primary_backup)
1644
+ @wrr = args[:wrr] if args.key?(:wrr)
1645
+ @wrr_policy = args[:wrr_policy] if args.key?(:wrr_policy)
1646
+ end
1647
+ end
1648
+
1390
1649
  # Request for the `RegisterDomain` method.
1391
1650
  class RegisterDomainRequest
1392
1651
  include Google::Apis::Core::Hashable
@@ -1682,6 +1941,85 @@ module Google
1682
1941
  end
1683
1942
  end
1684
1943
 
1944
+ # A unit of data that is returned by the DNS servers.
1945
+ class ResourceRecordSet
1946
+ include Google::Apis::Core::Hashable
1947
+
1948
+ # For example, www.example.com.
1949
+ # Corresponds to the JSON property `name`
1950
+ # @return [String]
1951
+ attr_accessor :name
1952
+
1953
+ # A RRSetRoutingPolicy represents ResourceRecordSet data that is returned
1954
+ # dynamically with the response varying based on configured properties such as
1955
+ # geolocation or by weighted random selection.
1956
+ # Corresponds to the JSON property `routingPolicy`
1957
+ # @return [Google::Apis::DomainsV1alpha2::RrSetRoutingPolicy]
1958
+ attr_accessor :routing_policy
1959
+
1960
+ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see
1961
+ # examples.
1962
+ # Corresponds to the JSON property `rrdata`
1963
+ # @return [Array<String>]
1964
+ attr_accessor :rrdata
1965
+
1966
+ # As defined in RFC 4034 (section 3.2).
1967
+ # Corresponds to the JSON property `signatureRrdata`
1968
+ # @return [Array<String>]
1969
+ attr_accessor :signature_rrdata
1970
+
1971
+ # Number of seconds that this `ResourceRecordSet` can be cached by resolvers.
1972
+ # Corresponds to the JSON property `ttl`
1973
+ # @return [Fixnum]
1974
+ attr_accessor :ttl
1975
+
1976
+ # The identifier of a supported record type. See the list of Supported DNS
1977
+ # record types.
1978
+ # Corresponds to the JSON property `type`
1979
+ # @return [String]
1980
+ attr_accessor :type
1981
+
1982
+ def initialize(**args)
1983
+ update!(**args)
1984
+ end
1985
+
1986
+ # Update properties of this object
1987
+ def update!(**args)
1988
+ @name = args[:name] if args.key?(:name)
1989
+ @routing_policy = args[:routing_policy] if args.key?(:routing_policy)
1990
+ @rrdata = args[:rrdata] if args.key?(:rrdata)
1991
+ @signature_rrdata = args[:signature_rrdata] if args.key?(:signature_rrdata)
1992
+ @ttl = args[:ttl] if args.key?(:ttl)
1993
+ @type = args[:type] if args.key?(:type)
1994
+ end
1995
+ end
1996
+
1997
+ # Response for the `RetrieveGoogleDomainsDnsRecords` method.
1998
+ class RetrieveGoogleDomainsDnsRecordsResponse
1999
+ include Google::Apis::Core::Hashable
2000
+
2001
+ # When present, there are more results to retrieve. Set `page_token` to this
2002
+ # value on a subsequent call to get the next page of results.
2003
+ # Corresponds to the JSON property `nextPageToken`
2004
+ # @return [String]
2005
+ attr_accessor :next_page_token
2006
+
2007
+ # The resource record set resources (DNS Zone records).
2008
+ # Corresponds to the JSON property `rrset`
2009
+ # @return [Array<Google::Apis::DomainsV1alpha2::ResourceRecordSet>]
2010
+ attr_accessor :rrset
2011
+
2012
+ def initialize(**args)
2013
+ update!(**args)
2014
+ end
2015
+
2016
+ # Update properties of this object
2017
+ def update!(**args)
2018
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2019
+ @rrset = args[:rrset] if args.key?(:rrset)
2020
+ end
2021
+ end
2022
+
1685
2023
  # Response for the `RetrieveGoogleDomainsForwardingConfig` method.
1686
2024
  class RetrieveGoogleDomainsForwardingConfigResponse
1687
2025
  include Google::Apis::Core::Hashable
@@ -2056,6 +2394,69 @@ module Google
2056
2394
  @yearly_price = args[:yearly_price] if args.key?(:yearly_price)
2057
2395
  end
2058
2396
  end
2397
+
2398
+ # Configures a RRSetRoutingPolicy that routes in a weighted round robin fashion.
2399
+ class WrrPolicy
2400
+ include Google::Apis::Core::Hashable
2401
+
2402
+ #
2403
+ # Corresponds to the JSON property `item`
2404
+ # @return [Array<Google::Apis::DomainsV1alpha2::WrrPolicyItem>]
2405
+ attr_accessor :item
2406
+
2407
+ def initialize(**args)
2408
+ update!(**args)
2409
+ end
2410
+
2411
+ # Update properties of this object
2412
+ def update!(**args)
2413
+ @item = args[:item] if args.key?(:item)
2414
+ end
2415
+ end
2416
+
2417
+ # A routing block which contains the routing information for one WRR item.
2418
+ class WrrPolicyItem
2419
+ include Google::Apis::Core::Hashable
2420
+
2421
+ # HealthCheckTargets describes endpoints to health-check when responding to
2422
+ # Routing Policy queries. Only the healthy endpoints will be included in the
2423
+ # response.
2424
+ # Corresponds to the JSON property `healthCheckedTargets`
2425
+ # @return [Google::Apis::DomainsV1alpha2::HealthCheckTargets]
2426
+ attr_accessor :health_checked_targets
2427
+
2428
+ #
2429
+ # Corresponds to the JSON property `rrdata`
2430
+ # @return [Array<String>]
2431
+ attr_accessor :rrdata
2432
+
2433
+ # DNSSEC generated signatures for all the `rrdata` within this item. Note that
2434
+ # if health checked targets are provided for DNSSEC enabled zones, there's a
2435
+ # restriction of 1 IP address per item.
2436
+ # Corresponds to the JSON property `signatureRrdata`
2437
+ # @return [Array<String>]
2438
+ attr_accessor :signature_rrdata
2439
+
2440
+ # The weight corresponding to this `WrrPolicyItem` object. When multiple `
2441
+ # WrrPolicyItem` objects are configured, the probability of returning an `
2442
+ # WrrPolicyItem` object's data is proportional to its weight relative to the sum
2443
+ # of weights configured for all items. This weight must be non-negative.
2444
+ # Corresponds to the JSON property `weight`
2445
+ # @return [Float]
2446
+ attr_accessor :weight
2447
+
2448
+ def initialize(**args)
2449
+ update!(**args)
2450
+ end
2451
+
2452
+ # Update properties of this object
2453
+ def update!(**args)
2454
+ @health_checked_targets = args[:health_checked_targets] if args.key?(:health_checked_targets)
2455
+ @rrdata = args[:rrdata] if args.key?(:rrdata)
2456
+ @signature_rrdata = args[:signature_rrdata] if args.key?(:signature_rrdata)
2457
+ @weight = args[:weight] if args.key?(:weight)
2458
+ end
2459
+ end
2059
2460
  end
2060
2461
  end
2061
2462
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DomainsV1alpha2
18
18
  # Version of the google-apis-domains_v1alpha2 gem
19
- GEM_VERSION = "0.38.0"
19
+ GEM_VERSION = "0.39.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240603"
25
+ REVISION = "20240610"
26
26
  end
27
27
  end
28
28
  end
@@ -124,6 +124,18 @@ module Google
124
124
  include Google::Apis::Core::JsonObjectSupport
125
125
  end
126
126
 
127
+ class GeoPolicy
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
133
+ class GeoPolicyItem
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
127
139
  class GlueRecord
128
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
141
 
@@ -136,6 +148,12 @@ module Google
136
148
  include Google::Apis::Core::JsonObjectSupport
137
149
  end
138
150
 
151
+ class HealthCheckTargets
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
139
157
  class ImportDomainRequest
140
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
159
 
@@ -166,6 +184,12 @@ module Google
166
184
  include Google::Apis::Core::JsonObjectSupport
167
185
  end
168
186
 
187
+ class LoadBalancerTarget
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
169
193
  class Location
170
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
195
 
@@ -208,6 +232,18 @@ module Google
208
232
  include Google::Apis::Core::JsonObjectSupport
209
233
  end
210
234
 
235
+ class PrimaryBackupPolicy
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
241
+ class RrSetRoutingPolicy
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
211
247
  class RegisterDomainRequest
212
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
249
 
@@ -238,6 +274,18 @@ module Google
238
274
  include Google::Apis::Core::JsonObjectSupport
239
275
  end
240
276
 
277
+ class ResourceRecordSet
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
283
+ class RetrieveGoogleDomainsDnsRecordsResponse
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
241
289
  class RetrieveGoogleDomainsForwardingConfigResponse
242
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
291
 
@@ -304,6 +352,18 @@ module Google
304
352
  include Google::Apis::Core::JsonObjectSupport
305
353
  end
306
354
 
355
+ class WrrPolicy
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
361
+ class WrrPolicyItem
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
307
367
  class AuditConfig
308
368
  # @private
309
369
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -410,6 +470,7 @@ module Google
410
470
 
411
471
  property :google_domains_dns, as: 'googleDomainsDns', class: Google::Apis::DomainsV1alpha2::GoogleDomainsDns, decorator: Google::Apis::DomainsV1alpha2::GoogleDomainsDns::Representation
412
472
 
473
+ property :google_domains_redirects_data_available, as: 'googleDomainsRedirectsDataAvailable'
413
474
  end
414
475
  end
415
476
 
@@ -469,6 +530,26 @@ module Google
469
530
  end
470
531
  end
471
532
 
533
+ class GeoPolicy
534
+ # @private
535
+ class Representation < Google::Apis::Core::JsonRepresentation
536
+ property :enable_fencing, as: 'enableFencing'
537
+ collection :item, as: 'item', class: Google::Apis::DomainsV1alpha2::GeoPolicyItem, decorator: Google::Apis::DomainsV1alpha2::GeoPolicyItem::Representation
538
+
539
+ end
540
+ end
541
+
542
+ class GeoPolicyItem
543
+ # @private
544
+ class Representation < Google::Apis::Core::JsonRepresentation
545
+ property :health_checked_targets, as: 'healthCheckedTargets', class: Google::Apis::DomainsV1alpha2::HealthCheckTargets, decorator: Google::Apis::DomainsV1alpha2::HealthCheckTargets::Representation
546
+
547
+ property :location, as: 'location'
548
+ collection :rrdata, as: 'rrdata'
549
+ collection :signature_rrdata, as: 'signatureRrdata'
550
+ end
551
+ end
552
+
472
553
  class GlueRecord
473
554
  # @private
474
555
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -488,6 +569,14 @@ module Google
488
569
  end
489
570
  end
490
571
 
572
+ class HealthCheckTargets
573
+ # @private
574
+ class Representation < Google::Apis::Core::JsonRepresentation
575
+ collection :internal_load_balancer, as: 'internalLoadBalancer', class: Google::Apis::DomainsV1alpha2::LoadBalancerTarget, decorator: Google::Apis::DomainsV1alpha2::LoadBalancerTarget::Representation
576
+
577
+ end
578
+ end
579
+
491
580
  class ImportDomainRequest
492
581
  # @private
493
582
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -530,6 +619,19 @@ module Google
530
619
  end
531
620
  end
532
621
 
622
+ class LoadBalancerTarget
623
+ # @private
624
+ class Representation < Google::Apis::Core::JsonRepresentation
625
+ property :ip_address, as: 'ipAddress'
626
+ property :ip_protocol, as: 'ipProtocol'
627
+ property :load_balancer_type, as: 'loadBalancerType'
628
+ property :network_url, as: 'networkUrl'
629
+ property :port, as: 'port'
630
+ property :project, as: 'project'
631
+ property :region, as: 'region'
632
+ end
633
+ end
634
+
533
635
  class Location
534
636
  # @private
535
637
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -613,6 +715,33 @@ module Google
613
715
  end
614
716
  end
615
717
 
718
+ class PrimaryBackupPolicy
719
+ # @private
720
+ class Representation < Google::Apis::Core::JsonRepresentation
721
+ property :backup_geo_targets, as: 'backupGeoTargets', class: Google::Apis::DomainsV1alpha2::GeoPolicy, decorator: Google::Apis::DomainsV1alpha2::GeoPolicy::Representation
722
+
723
+ property :primary_targets, as: 'primaryTargets', class: Google::Apis::DomainsV1alpha2::HealthCheckTargets, decorator: Google::Apis::DomainsV1alpha2::HealthCheckTargets::Representation
724
+
725
+ property :trickle_traffic, as: 'trickleTraffic'
726
+ end
727
+ end
728
+
729
+ class RrSetRoutingPolicy
730
+ # @private
731
+ class Representation < Google::Apis::Core::JsonRepresentation
732
+ property :geo, as: 'geo', class: Google::Apis::DomainsV1alpha2::GeoPolicy, decorator: Google::Apis::DomainsV1alpha2::GeoPolicy::Representation
733
+
734
+ property :geo_policy, as: 'geoPolicy', class: Google::Apis::DomainsV1alpha2::GeoPolicy, decorator: Google::Apis::DomainsV1alpha2::GeoPolicy::Representation
735
+
736
+ property :primary_backup, as: 'primaryBackup', class: Google::Apis::DomainsV1alpha2::PrimaryBackupPolicy, decorator: Google::Apis::DomainsV1alpha2::PrimaryBackupPolicy::Representation
737
+
738
+ property :wrr, as: 'wrr', class: Google::Apis::DomainsV1alpha2::WrrPolicy, decorator: Google::Apis::DomainsV1alpha2::WrrPolicy::Representation
739
+
740
+ property :wrr_policy, as: 'wrrPolicy', class: Google::Apis::DomainsV1alpha2::WrrPolicy, decorator: Google::Apis::DomainsV1alpha2::WrrPolicy::Representation
741
+
742
+ end
743
+ end
744
+
616
745
  class RegisterDomainRequest
617
746
  # @private
618
747
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -679,6 +808,28 @@ module Google
679
808
  end
680
809
  end
681
810
 
811
+ class ResourceRecordSet
812
+ # @private
813
+ class Representation < Google::Apis::Core::JsonRepresentation
814
+ property :name, as: 'name'
815
+ property :routing_policy, as: 'routingPolicy', class: Google::Apis::DomainsV1alpha2::RrSetRoutingPolicy, decorator: Google::Apis::DomainsV1alpha2::RrSetRoutingPolicy::Representation
816
+
817
+ collection :rrdata, as: 'rrdata'
818
+ collection :signature_rrdata, as: 'signatureRrdata'
819
+ property :ttl, as: 'ttl'
820
+ property :type, as: 'type'
821
+ end
822
+ end
823
+
824
+ class RetrieveGoogleDomainsDnsRecordsResponse
825
+ # @private
826
+ class Representation < Google::Apis::Core::JsonRepresentation
827
+ property :next_page_token, as: 'nextPageToken'
828
+ collection :rrset, as: 'rrset', class: Google::Apis::DomainsV1alpha2::ResourceRecordSet, decorator: Google::Apis::DomainsV1alpha2::ResourceRecordSet::Representation
829
+
830
+ end
831
+ end
832
+
682
833
  class RetrieveGoogleDomainsForwardingConfigResponse
683
834
  # @private
684
835
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -781,6 +932,25 @@ module Google
781
932
 
782
933
  end
783
934
  end
935
+
936
+ class WrrPolicy
937
+ # @private
938
+ class Representation < Google::Apis::Core::JsonRepresentation
939
+ collection :item, as: 'item', class: Google::Apis::DomainsV1alpha2::WrrPolicyItem, decorator: Google::Apis::DomainsV1alpha2::WrrPolicyItem::Representation
940
+
941
+ end
942
+ end
943
+
944
+ class WrrPolicyItem
945
+ # @private
946
+ class Representation < Google::Apis::Core::JsonRepresentation
947
+ property :health_checked_targets, as: 'healthCheckedTargets', class: Google::Apis::DomainsV1alpha2::HealthCheckTargets, decorator: Google::Apis::DomainsV1alpha2::HealthCheckTargets::Representation
948
+
949
+ collection :rrdata, as: 'rrdata'
950
+ collection :signature_rrdata, as: 'signatureRrdata'
951
+ property :weight, as: 'weight'
952
+ end
953
+ end
784
954
  end
785
955
  end
786
956
  end
@@ -795,6 +795,46 @@ module Google
795
795
  execute_or_queue_command(command, &block)
796
796
  end
797
797
 
798
+ # Lists the DNS records from the Google Domains DNS zone for domains that use
799
+ # the deprecated `google_domains_dns` in the `Registration`'s `dns_settings`.
800
+ # @param [String] registration
801
+ # Required. The name of the `Registration` whose Google Domains DNS records
802
+ # details you are retrieving, in the format `projects/*/locations/*/
803
+ # registrations/*`.
804
+ # @param [Fixnum] page_size
805
+ # Optional. Maximum number of results to return.
806
+ # @param [String] page_token
807
+ # Optional. When set to the `next_page_token` from a prior response, provides
808
+ # the next page of results.
809
+ # @param [String] fields
810
+ # Selector specifying which fields to include in a partial response.
811
+ # @param [String] quota_user
812
+ # Available to use for quota purposes for server-side applications. Can be any
813
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
814
+ # @param [Google::Apis::RequestOptions] options
815
+ # Request-specific options
816
+ #
817
+ # @yield [result, err] Result & error if block supplied
818
+ # @yieldparam result [Google::Apis::DomainsV1alpha2::RetrieveGoogleDomainsDnsRecordsResponse] parsed result object
819
+ # @yieldparam err [StandardError] error object if request failed
820
+ #
821
+ # @return [Google::Apis::DomainsV1alpha2::RetrieveGoogleDomainsDnsRecordsResponse]
822
+ #
823
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
824
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
825
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
826
+ def retrieve_project_location_registration_google_domains_dns_records(registration, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
827
+ command = make_simple_command(:get, 'v1alpha2/{+registration}:retrieveGoogleDomainsDnsRecords', options)
828
+ command.response_representation = Google::Apis::DomainsV1alpha2::RetrieveGoogleDomainsDnsRecordsResponse::Representation
829
+ command.response_class = Google::Apis::DomainsV1alpha2::RetrieveGoogleDomainsDnsRecordsResponse
830
+ command.params['registration'] = registration unless registration.nil?
831
+ command.query['pageSize'] = page_size unless page_size.nil?
832
+ command.query['pageToken'] = page_token unless page_token.nil?
833
+ command.query['fields'] = fields unless fields.nil?
834
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
835
+ execute_or_queue_command(command, &block)
836
+ end
837
+
798
838
  # Lists the deprecated domain and email forwarding configurations you set up in
799
839
  # the deprecated Google Domains UI. The configuration is present only for
800
840
  # domains with the `google_domains_redirects_data_available` set to `true` in
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-domains_v1alpha2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.38.0
4
+ version: 0.39.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-06-09 00:00:00.000000000 Z
11
+ date: 2024-06-16 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_v1alpha2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-domains_v1alpha2/v0.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-domains_v1alpha2/v0.39.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-domains_v1alpha2
63
63
  post_install_message:
64
64
  rdoc_options: []