Class: Google::Apis::ComputeV1::SslPoliciesScopedList
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::SslPoliciesScopedList
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
-
#ssl_policies ⇒ Array<Google::Apis::ComputeV1::SslPolicy>
A list of SslPolicies contained in this scope.
-
#warning ⇒ Google::Apis::ComputeV1::SslPoliciesScopedList::Warning
Informational warning which replaces the list of SSL policies when the list is empty.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SslPoliciesScopedList
constructor
A new instance of SslPoliciesScopedList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SslPoliciesScopedList
Returns a new instance of SslPoliciesScopedList.
37229 37230 37231 |
# File 'lib/google/apis/compute_v1/classes.rb', line 37229 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ssl_policies ⇒ Array<Google::Apis::ComputeV1::SslPolicy>
A list of SslPolicies contained in this scope.
Corresponds to the JSON property sslPolicies
37221 37222 37223 |
# File 'lib/google/apis/compute_v1/classes.rb', line 37221 def ssl_policies @ssl_policies end |
#warning ⇒ Google::Apis::ComputeV1::SslPoliciesScopedList::Warning
Informational warning which replaces the list of SSL policies when the list is
empty.
Corresponds to the JSON property warning
37227 37228 37229 |
# File 'lib/google/apis/compute_v1/classes.rb', line 37227 def warning @warning end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
37234 37235 37236 37237 |
# File 'lib/google/apis/compute_v1/classes.rb', line 37234 def update!(**args) @ssl_policies = args[:ssl_policies] if args.key?(:ssl_policies) @warning = args[:warning] if args.key?(:warning) end |