Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessGet
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessGet
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
Get action. For example, "Get" : "name" : "target.name", "value" : "default"
Instance Attribute Summary collapse
-
#name ⇒ String
Corresponds to the JSON property
name
. -
#value ⇒ String
Corresponds to the JSON property
value
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1AccessGet
constructor
A new instance of GoogleCloudApigeeV1AccessGet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1AccessGet
Returns a new instance of GoogleCloudApigeeV1AccessGet.
194 195 196 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 194 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Corresponds to the JSON property name
187 188 189 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 187 def name @name end |
#value ⇒ String
Corresponds to the JSON property value
192 193 194 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 192 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
199 200 201 202 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 199 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end |