Class: Google::Apis::DnsV1beta2::ResponsePolicy
- Inherits:
-
Object
- Object
- Google::Apis::DnsV1beta2::ResponsePolicy
- 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 Response Policy is a collection of selectors that apply to queries made against one or more Virtual Private Cloud networks.
Instance Attribute Summary collapse
-
#description ⇒ String
User-provided description for this Response Policy.
-
#gke_clusters ⇒ Array<Google::Apis::DnsV1beta2::ResponsePolicyGkeCluster>
The list of Google Kubernetes Engine clusters to which this response policy is applied.
-
#id ⇒ Fixnum
Unique identifier for the resource; defined by the server (output only).
-
#kind ⇒ String
Corresponds to the JSON property
kind. -
#networks ⇒ Array<Google::Apis::DnsV1beta2::ResponsePolicyNetwork>
List of network names specifying networks to which this policy is applied.
-
#response_policy_name ⇒ String
User assigned name for this Response Policy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResponsePolicy
constructor
A new instance of ResponsePolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResponsePolicy
Returns a new instance of ResponsePolicy.
1912 1913 1914 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1912 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
User-provided description for this Response Policy.
Corresponds to the JSON property description
1884 1885 1886 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1884 def description @description end |
#gke_clusters ⇒ Array<Google::Apis::DnsV1beta2::ResponsePolicyGkeCluster>
The list of Google Kubernetes Engine clusters to which this response policy is
applied.
Corresponds to the JSON property gkeClusters
1890 1891 1892 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1890 def gke_clusters @gke_clusters end |
#id ⇒ Fixnum
Unique identifier for the resource; defined by the server (output only).
Corresponds to the JSON property id
1895 1896 1897 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1895 def id @id end |
#kind ⇒ String
Corresponds to the JSON property kind
1900 1901 1902 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1900 def kind @kind end |
#networks ⇒ Array<Google::Apis::DnsV1beta2::ResponsePolicyNetwork>
List of network names specifying networks to which this policy is applied.
Corresponds to the JSON property networks
1905 1906 1907 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1905 def networks @networks end |
#response_policy_name ⇒ String
User assigned name for this Response Policy.
Corresponds to the JSON property responsePolicyName
1910 1911 1912 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1910 def response_policy_name @response_policy_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1917 1918 1919 1920 1921 1922 1923 1924 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1917 def update!(**args) @description = args[:description] if args.key?(:description) @gke_clusters = args[:gke_clusters] if args.key?(:gke_clusters) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @networks = args[:networks] if args.key?(:networks) @response_policy_name = args[:response_policy_name] if args.key?(:response_policy_name) end |