Class: Google::Cloud::VmwareEngine::V1::PrivateCloud
- Inherits:
-
Object
- Object
- Google::Cloud::VmwareEngine::V1::PrivateCloud
- 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 of type STANDARD
and
TIME_LIMITED
are zonal resources, STRETCHED
private clouds are
regional.
Defined Under Namespace
Modules: State, Type Classes: ManagementCluster
Instance Attribute Summary collapse
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#delete_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#description ⇒ ::String
User-provided description for this private cloud.
-
#expire_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#hcx ⇒ ::Google::Cloud::VmwareEngine::V1::Hcx
readonly
Output only.
-
#management_cluster ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateCloud::ManagementCluster
Required.
-
#name ⇒ ::String
readonly
Output only.
-
#network_config ⇒ ::Google::Cloud::VmwareEngine::V1::NetworkConfig
Required.
-
#nsx ⇒ ::Google::Cloud::VmwareEngine::V1::Nsx
readonly
Output only.
-
#state ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateCloud::State
readonly
Output only.
-
#type ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateCloud::Type
Optional.
-
#uid ⇒ ::String
readonly
Output only.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#vcenter ⇒ ::Google::Cloud::VmwareEngine::V1::Vcenter
readonly
Output only.
Instance Attribute Details
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Creation time of this resource.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |
#delete_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Time when the resource was scheduled for deletion.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |
#description ⇒ ::String
Returns User-provided description for this private cloud.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |
#expire_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Time when the resource will be irreversibly deleted.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |
#hcx ⇒ ::Google::Cloud::VmwareEngine::V1::Hcx (readonly)
Returns Output only. HCX appliance.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 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
.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 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
.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |
#network_config ⇒ ::Google::Cloud::VmwareEngine::V1::NetworkConfig
Returns Required. Network configuration of the private cloud.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |
#nsx ⇒ ::Google::Cloud::VmwareEngine::V1::Nsx (readonly)
Returns Output only. NSX appliance.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 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.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |
#type ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateCloud::Type
Returns Optional. Type of the private cloud. Defaults to STANDARD.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |
#uid ⇒ ::String (readonly)
Returns Output only. System-generated unique identifier for the resource.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |
#update_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Last update time of this resource.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |
#vcenter ⇒ ::Google::Cloud::VmwareEngine::V1::Vcenter (readonly)
Returns Output only. Vcenter appliance.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 150 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`). # @!attribute [rw] stretched_cluster_config # @return [::Google::Cloud::VmwareEngine::V1::StretchedClusterConfig] # Optional. Configuration of a stretched cluster. Required for STRETCHED # private clouds. 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 # Stretched private cloud is a regional resource with redundancy, # with a minimum of 6 nodes, nodes count has to be even. STRETCHED = 2 end end |