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.rb
Overview
Represents a private cloud resource. Private clouds are zonal resources.
Defined Under Namespace
Modules: State 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
Input only.
-
#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.
-
#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)
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#delete_time ⇒ ::Google::Protobuf::Timestamp (readonly)
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#description ⇒ ::String
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#expire_time ⇒ ::Google::Protobuf::Timestamp (readonly)
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#hcx ⇒ ::Google::Cloud::VmwareEngine::V1::Hcx (readonly)
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#management_cluster ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateCloud::ManagementCluster
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#name ⇒ ::String (readonly)
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#network_config ⇒ ::Google::Cloud::VmwareEngine::V1::NetworkConfig
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#nsx ⇒ ::Google::Cloud::VmwareEngine::V1::Nsx (readonly)
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#state ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateCloud::State (readonly)
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#uid ⇒ ::String (readonly)
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#update_time ⇒ ::Google::Protobuf::Timestamp (readonly)
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |
#vcenter ⇒ ::Google::Cloud::VmwareEngine::V1::Vcenter (readonly)
119 120 121 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 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb', line 119 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 end |