Class: Google::Apis::DnsV1::RrSetRoutingPolicy
- Inherits:
-
Object
- Object
- Google::Apis::DnsV1::RrSetRoutingPolicy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dns_v1/classes.rb,
lib/google/apis/dns_v1/representations.rb,
lib/google/apis/dns_v1/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::DnsV1::RrSetRoutingPolicyGeoPolicy
Configures a
RRSetRoutingPolicythat routes based on the geo location of the querying user. -
#health_check ⇒ String
The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
-
#kind ⇒ String
Corresponds to the JSON property
kind. -
#primary_backup ⇒ Google::Apis::DnsV1::RrSetRoutingPolicyPrimaryBackupPolicy
Configures a RRSetRoutingPolicy such that all queries are responded with the primary_targets if they are healthy.
-
#wrr ⇒ Google::Apis::DnsV1::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.
2036 2037 2038 |
# File 'lib/google/apis/dns_v1/classes.rb', line 2036 def initialize(**args) update!(**args) end |
Instance Attribute Details
#geo ⇒ Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy
Configures a RRSetRoutingPolicy that routes based on the geo location of the
querying user.
Corresponds to the JSON property geo
2010 2011 2012 |
# File 'lib/google/apis/dns_v1/classes.rb', line 2010 def geo @geo end |
#health_check ⇒ String
The selfLink attribute of the HealthCheck resource to use for this
RRSetRoutingPolicy. https://cloud.google.com/compute/docs/reference/rest/v1/
healthChecks
Corresponds to the JSON property healthCheck
2017 2018 2019 |
# File 'lib/google/apis/dns_v1/classes.rb', line 2017 def health_check @health_check end |
#kind ⇒ String
Corresponds to the JSON property kind
2022 2023 2024 |
# File 'lib/google/apis/dns_v1/classes.rb', line 2022 def kind @kind end |
#primary_backup ⇒ Google::Apis::DnsV1::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
2029 2030 2031 |
# File 'lib/google/apis/dns_v1/classes.rb', line 2029 def primary_backup @primary_backup end |
#wrr ⇒ Google::Apis::DnsV1::RrSetRoutingPolicyWrrPolicy
Configures a RRSetRoutingPolicy that routes in a weighted round robin fashion.
Corresponds to the JSON property wrr
2034 2035 2036 |
# File 'lib/google/apis/dns_v1/classes.rb', line 2034 def wrr @wrr end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2041 2042 2043 2044 2045 2046 2047 |
# File 'lib/google/apis/dns_v1/classes.rb', line 2041 def update!(**args) @geo = args[:geo] if args.key?(:geo) @health_check = args[:health_check] if args.key?(:health_check) @kind = args[:kind] if args.key?(:kind) @primary_backup = args[:primary_backup] if args.key?(:primary_backup) @wrr = args[:wrr] if args.key?(:wrr) end |