Class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicyGeoPolicyItem
- Inherits:
-
Object
- Object
- Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicyGeoPolicyItem
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dns_v1beta2/classes.rb,
generated/google/apis/dns_v1beta2/representations.rb,
generated/google/apis/dns_v1beta2/representations.rb
Instance Attribute Summary collapse
-
#kind ⇒ String
Corresponds to the JSON property
kind
. -
#location ⇒ String
The geo-location granularity is a GCP region.
-
#rrdatas ⇒ Array<String>
Corresponds to the JSON property
rrdatas
. -
#signature_rrdatas ⇒ Array<String>
DNSSEC generated signatures for the above geo_rrdata.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RrSetRoutingPolicyGeoPolicyGeoPolicyItem
constructor
A new instance of RrSetRoutingPolicyGeoPolicyGeoPolicyItem.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RrSetRoutingPolicyGeoPolicyGeoPolicyItem
Returns a new instance of RrSetRoutingPolicyGeoPolicyGeoPolicyItem.
1473 1474 1475 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 1473 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Corresponds to the JSON property kind
1454 1455 1456 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 1454 def kind @kind end |
#location ⇒ String
The geo-location granularity is a GCP region. This location string should
correspond to a GCP region. e.g "us-east1", "southamerica-east1", "asia-east1",
etc.
Corresponds to the JSON property location
1461 1462 1463 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 1461 def location @location end |
#rrdatas ⇒ Array<String>
Corresponds to the JSON property rrdatas
1466 1467 1468 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 1466 def rrdatas @rrdatas end |
#signature_rrdatas ⇒ Array<String>
DNSSEC generated signatures for the above geo_rrdata.
Corresponds to the JSON property signatureRrdatas
1471 1472 1473 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 1471 def signature_rrdatas @signature_rrdatas end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1478 1479 1480 1481 1482 1483 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 1478 def update!(**args) @kind = args[:kind] if args.key?(:kind) @location = args[:location] if args.key?(:location) @rrdatas = args[:rrdatas] if args.key?(:rrdatas) @signature_rrdatas = args[:signature_rrdatas] if args.key?(:signature_rrdatas) end |