Class: Google::Cloud::VmwareEngine::V1::PrivateCloud

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb

Overview

Represents a private cloud resource. Private clouds are zonal resources.

Defined Under Namespace

Modules: State, Type Classes: ManagementCluster

Instance Attribute Summary collapse

Instance Attribute Details

#create_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Creation time of this resource.

Returns:



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#delete_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Time when the resource was scheduled for deletion.

Returns:



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#description::String

Returns User-provided description for this private cloud.

Returns:

  • (::String)

    User-provided description for this private cloud.



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#expire_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Time when the resource will be irreversibly deleted.

Returns:



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#hcx::Google::Cloud::VmwareEngine::V1::Hcx (readonly)

Returns Output only. HCX appliance.

Returns:



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#management_cluster::Google::Cloud::VmwareEngine::V1::PrivateCloud::ManagementCluster

Returns Required. Input only. The management cluster for this private cloud. This field is required during creation of the private cloud to provide details for the default cluster.

The following fields can't be changed after private cloud creation: ManagementCluster.clusterId, ManagementCluster.nodeTypeId.

Returns:

  • (::Google::Cloud::VmwareEngine::V1::PrivateCloud::ManagementCluster)

    Required. Input only. The management cluster for this private cloud. This field is required during creation of the private cloud to provide details for the default cluster.

    The following fields can't be changed after private cloud creation: ManagementCluster.clusterId, ManagementCluster.nodeTypeId.



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#name::String (readonly)

Returns Output only. The resource name of this private cloud. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-central1-a/privateClouds/my-cloud.

Returns:

  • (::String)

    Output only. The resource name of this private cloud. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-central1-a/privateClouds/my-cloud



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#network_config::Google::Cloud::VmwareEngine::V1::NetworkConfig

Returns Required. Network configuration of the private cloud.

Returns:



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#nsx::Google::Cloud::VmwareEngine::V1::Nsx (readonly)

Returns Output only. NSX appliance.

Returns:



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#state::Google::Cloud::VmwareEngine::V1::PrivateCloud::State (readonly)

Returns Output only. State of the resource. New values may be added to this enum when appropriate.

Returns:



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#type::Google::Cloud::VmwareEngine::V1::PrivateCloud::Type

Returns Optional. Type of the private cloud. Defaults to STANDARD.

Returns:



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#uid::String (readonly)

Returns Output only. System-generated unique identifier for the resource.

Returns:

  • (::String)

    Output only. System-generated unique identifier for the resource.



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#update_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Last update time of this resource.

Returns:



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end

#vcenter::Google::Cloud::VmwareEngine::V1::Vcenter (readonly)

Returns Output only. Vcenter appliance.

Returns:



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 122

class PrivateCloud
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Management cluster configuration.
  # @!attribute [rw] cluster_id
  #   @return [::String]
  #     Required. The user-provided identifier of the new `Cluster`.
  #     The identifier must meet the following requirements:
  #
  #     * Only contains 1-63 alphanumeric characters and hyphens
  #     * Begins with an alphabetical character
  #     * Ends with a non-hyphen character
  #     * Not formatted as a UUID
  #     * Complies with [RFC
  #     1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
  # @!attribute [rw] node_type_configs
  #   @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
  #     Required. The map of cluster node types in this cluster, where the key is
  #     canonical identifier of the node type (corresponds to the `NodeType`).
  class ManagementCluster
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
    class NodeTypeConfigsEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Enum State defines possible states of private clouds.
  module State
    # The default value. This value should never be used.
    STATE_UNSPECIFIED = 0

    # The private cloud is ready.
    ACTIVE = 1

    # The private cloud is being created.
    CREATING = 2

    # The private cloud is being updated.
    UPDATING = 3

    # The private cloud is in failed state.
    FAILED = 5

    # The private cloud is scheduled for deletion. The deletion process can be
    # cancelled by using the corresponding undelete method.
    DELETED = 6

    # The private cloud is irreversibly deleted and is being removed from the
    # system.
    PURGING = 7
  end

  # Enum Type defines private cloud type.
  module Type
    # Standard private is a zonal resource, with 3+ nodes. Default type.
    STANDARD = 0

    # Time limited private cloud is a zonal resource, can have only 1 node and
    # has limited life span. Will be deleted after defined period of time,
    # can be converted into standard private cloud by expanding it up to 3
    # or more nodes.
    TIME_LIMITED = 1
  end
end