Class: Google::Apis::DnsV1beta2::RrSetRoutingPolicy
- Inherits:
-
Object
- Object
- Google::Apis::DnsV1beta2::RrSetRoutingPolicy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dns_v1beta2/classes.rb,
lib/google/apis/dns_v1beta2/representations.rb,
lib/google/apis/dns_v1beta2/representations.rb
Overview
A RRSetRoutingPolicy represents ResourceRecordSet data that is returned dynamically with the response varying based on configured properties such as geolocation or by weighted random selection.
Instance Attribute Summary collapse
-
#geo ⇒ Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy
Configures a RRSetRoutingPolicy that routes based on the geo location of the querying user.
-
#geo_policy ⇒ Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy
Configures a RRSetRoutingPolicy that routes based on the geo location of the querying user.
-
#kind ⇒ String
Corresponds to the JSON property
kind. -
#primary_backup ⇒ Google::Apis::DnsV1beta2::RrSetRoutingPolicyPrimaryBackupPolicy
Configures a RRSetRoutingPolicy such that all queries are responded with the primary_targets if they are healthy.
-
#wrr ⇒ Google::Apis::DnsV1beta2::RrSetRoutingPolicyWrrPolicy
Configures a RRSetRoutingPolicy that routes in a weighted round robin fashion.
-
#wrr_policy ⇒ Google::Apis::DnsV1beta2::RrSetRoutingPolicyWrrPolicy
Configures a RRSetRoutingPolicy that routes in a weighted round robin fashion.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RrSetRoutingPolicy
constructor
A new instance of RrSetRoutingPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RrSetRoutingPolicy
Returns a new instance of RrSetRoutingPolicy.
2019 2020 2021 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2019 def initialize(**args) update!(**args) end |
Instance Attribute Details
#geo ⇒ Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy
Configures a RRSetRoutingPolicy that routes based on the geo location of the
querying user.
Corresponds to the JSON property geo
1989 1990 1991 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1989 def geo @geo end |
#geo_policy ⇒ Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy
Configures a RRSetRoutingPolicy that routes based on the geo location of the
querying user.
Corresponds to the JSON property geoPolicy
1995 1996 1997 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1995 def geo_policy @geo_policy end |
#kind ⇒ String
Corresponds to the JSON property kind
2000 2001 2002 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2000 def kind @kind end |
#primary_backup ⇒ Google::Apis::DnsV1beta2::RrSetRoutingPolicyPrimaryBackupPolicy
Configures a RRSetRoutingPolicy such that all queries are responded with the
primary_targets if they are healthy. And if all of them are unhealthy, then we
fallback to a geo localized policy.
Corresponds to the JSON property primaryBackup
2007 2008 2009 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2007 def primary_backup @primary_backup end |
#wrr ⇒ Google::Apis::DnsV1beta2::RrSetRoutingPolicyWrrPolicy
Configures a RRSetRoutingPolicy that routes in a weighted round robin fashion.
Corresponds to the JSON property wrr
2012 2013 2014 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2012 def wrr @wrr end |
#wrr_policy ⇒ Google::Apis::DnsV1beta2::RrSetRoutingPolicyWrrPolicy
Configures a RRSetRoutingPolicy that routes in a weighted round robin fashion.
Corresponds to the JSON property wrrPolicy
2017 2018 2019 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2017 def wrr_policy @wrr_policy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2024 2025 2026 2027 2028 2029 2030 2031 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2024 def update!(**args) @geo = args[:geo] if args.key?(:geo) @geo_policy = args[:geo_policy] if args.key?(:geo_policy) @kind = args[:kind] if args.key?(:kind) @primary_backup = args[:primary_backup] if args.key?(:primary_backup) @wrr = args[:wrr] if args.key?(:wrr) @wrr_policy = args[:wrr_policy] if args.key?(:wrr_policy) end |