Class: Google::Apis::FileV1beta1::Instance
- Inherits:
-
Object
- Object
- Google::Apis::FileV1beta1::Instance
- 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
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
The description of the instance (2048 characters or less).
-
#etag ⇒ String
Server-specified ETag for the instance resource to prevent simultaneous updates from overwriting each other.
-
#file_shares ⇒ Array<Google::Apis::FileV1beta1::FileShareConfig>
File system shares on the instance.
-
#labels ⇒ Hash<String,String>
Resource labels to represent user provided metadata.
-
#name ⇒ String
Output only.
-
#networks ⇒ Array<Google::Apis::FileV1beta1::NetworkConfig>
VPC networks to which the instance is connected.
-
#state ⇒ String
Output only.
-
#status_message ⇒ String
Output only.
-
#tier ⇒ String
The service tier of the instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Instance
constructor
A new instance of Instance.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Instance
Returns a new instance of Instance.
1059 1060 1061 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1059 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time when the instance was created.
Corresponds to the JSON property createTime
1008 1009 1010 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1008 def create_time @create_time end |
#description ⇒ String
The description of the instance (2048 characters or less).
Corresponds to the JSON property description
1013 1014 1015 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1013 def description @description end |
#etag ⇒ String
Server-specified ETag for the instance resource to prevent simultaneous
updates from overwriting each other.
Corresponds to the JSON property etag
1019 1020 1021 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1019 def etag @etag end |
#file_shares ⇒ Array<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
1025 1026 1027 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1025 def file_shares @file_shares end |
#labels ⇒ Hash<String,String>
Resource labels to represent user provided metadata.
Corresponds to the JSON property labels
1030 1031 1032 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1030 def labels @labels end |
#name ⇒ String
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
1036 1037 1038 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1036 def name @name end |
#networks ⇒ Array<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
1042 1043 1044 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1042 def networks @networks end |
#state ⇒ String
Output only. The instance state.
Corresponds to the JSON property state
1047 1048 1049 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1047 def state @state end |
#status_message ⇒ String
Output only. Additional information about the instance state, if available.
Corresponds to the JSON property statusMessage
1052 1053 1054 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1052 def @status_message end |
#tier ⇒ String
The service tier of the instance.
Corresponds to the JSON property tier
1057 1058 1059 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1057 def tier @tier end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 1064 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 |