Class: Google::Apis::FileV1beta1::Instance

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/file_v1beta1/classes.rb,
generated/google/apis/file_v1beta1/representations.rb,
generated/google/apis/file_v1beta1/representations.rb

Overview

A Cloud Filestore instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Instance

Returns a new instance of Instance



617
618
619
# File 'generated/google/apis/file_v1beta1/classes.rb', line 617

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

Instance Attribute Details

#create_timeString

Output only. The time when the instance was created. Corresponds to the JSON property createTime

Returns:

  • (String)


566
567
568
# File 'generated/google/apis/file_v1beta1/classes.rb', line 566

def create_time
  @create_time
end

#descriptionString

Optional. A description of the instance (2048 characters or less). Corresponds to the JSON property description

Returns:

  • (String)


571
572
573
# File 'generated/google/apis/file_v1beta1/classes.rb', line 571

def description
  @description
end

#etagString

Server-specified ETag for the instance resource to prevent simultaneous updates from overwriting each other. Corresponds to the JSON property etag

Returns:

  • (String)


577
578
579
# File 'generated/google/apis/file_v1beta1/classes.rb', line 577

def etag
  @etag
end

#file_sharesArray<Google::Apis::FileV1beta1::FileShareConfig>

File system shares on the instance. For this version, only a single file share is supported. Corresponds to the JSON property fileShares



583
584
585
# File 'generated/google/apis/file_v1beta1/classes.rb', line 583

def file_shares
  @file_shares
end

#labelsHash<String,String>

Resource labels to represent user provided metadata. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


588
589
590
# File 'generated/google/apis/file_v1beta1/classes.rb', line 588

def labels
  @labels
end

#nameString

Output only. The resource name of the instance, in the format projects/project_id/locations/location_id/instances/instance_id. Corresponds to the JSON property name

Returns:

  • (String)


594
595
596
# File 'generated/google/apis/file_v1beta1/classes.rb', line 594

def name
  @name
end

#networksArray<Google::Apis::FileV1beta1::NetworkConfig>

VPC networks to which the instance is connected. For this version, only a single network is supported. Corresponds to the JSON property networks



600
601
602
# File 'generated/google/apis/file_v1beta1/classes.rb', line 600

def networks
  @networks
end

#stateString

Output only. The instance state. Corresponds to the JSON property state

Returns:

  • (String)


605
606
607
# File 'generated/google/apis/file_v1beta1/classes.rb', line 605

def state
  @state
end

#status_messageString

Output only. Additional information about the instance state, if available. Corresponds to the JSON property statusMessage

Returns:

  • (String)


610
611
612
# File 'generated/google/apis/file_v1beta1/classes.rb', line 610

def status_message
  @status_message
end

#tierString

The service tier of the instance. Corresponds to the JSON property tier

Returns:

  • (String)


615
616
617
# File 'generated/google/apis/file_v1beta1/classes.rb', line 615

def tier
  @tier
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



622
623
624
625
626
627
628
629
630
631
632
633
# File 'generated/google/apis/file_v1beta1/classes.rb', line 622

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @description = args[:description] if args.key?(:description)
  @etag = args[:etag] if args.key?(:etag)
  @file_shares = args[:file_shares] if args.key?(:file_shares)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @networks = args[:networks] if args.key?(:networks)
  @state = args[:state] if args.key?(:state)
  @status_message = args[:status_message] if args.key?(:status_message)
  @tier = args[:tier] if args.key?(:tier)
end