Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Space
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1Space
- 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
Organization space resource.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Optional.
-
#name ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1Space
constructor
A new instance of GoogleCloudApigeeV1Space.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1Space
Returns a new instance of GoogleCloudApigeeV1Space.
12377 12378 12379 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12377 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Create timestamp of the space.
Corresponds to the JSON property createTime
12359 12360 12361 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12359 def create_time @create_time end |
#display_name ⇒ String
Optional. Display name of the space.
Corresponds to the JSON property displayName
12364 12365 12366 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12364 def display_name @display_name end |
#name ⇒ String
Output only. Identifier. Id of the space. This field is used as the resource
name, and must follow AIP-122 guidelines.
Corresponds to the JSON property name
12370 12371 12372 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12370 def name @name end |
#update_time ⇒ String
Output only. Last modified timestamp of the space.
Corresponds to the JSON property updateTime
12375 12376 12377 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12375 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12382 12383 12384 12385 12386 12387 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12382 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end |