Class: Google::Apis::FileV1beta1::Replication

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

Overview

Replication specifications.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Replication

Returns a new instance of Replication.

[View source]

1765
1766
1767
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1765

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

Instance Attribute Details

#replicasArray<Google::Apis::FileV1beta1::ReplicaConfig>

Replication configuration for the replica instance associated with this instance. Only a single replica is supported. Corresponds to the JSON property replicas


1758
1759
1760
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1758

def replicas
  @replicas
end

#roleString

Output only. The replication role. Corresponds to the JSON property role

Returns:

  • (String)

1763
1764
1765
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1763

def role
  @role
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

1770
1771
1772
1773
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1770

def update!(**args)
  @replicas = args[:replicas] if args.key?(:replicas)
  @role = args[:role] if args.key?(:role)
end