Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Space

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1Space

Returns a new instance of GoogleCloudApigeeV1Space.



12539
12540
12541
# File 'lib/google/apis/apigee_v1/classes.rb', line 12539

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

Output only. Create timestamp of the space. Corresponds to the JSON property createTime

Returns:

  • (String)


12521
12522
12523
# File 'lib/google/apis/apigee_v1/classes.rb', line 12521

def create_time
  @create_time
end

#display_nameString

Optional. Display name of the space. Corresponds to the JSON property displayName

Returns:

  • (String)


12526
12527
12528
# File 'lib/google/apis/apigee_v1/classes.rb', line 12526

def display_name
  @display_name
end

#nameString

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

Returns:

  • (String)


12532
12533
12534
# File 'lib/google/apis/apigee_v1/classes.rb', line 12532

def name
  @name
end

#update_timeString

Output only. Last modified timestamp of the space. Corresponds to the JSON property updateTime

Returns:

  • (String)


12537
12538
12539
# File 'lib/google/apis/apigee_v1/classes.rb', line 12537

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12544
12545
12546
12547
12548
12549
# File 'lib/google/apis/apigee_v1/classes.rb', line 12544

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