pub struct CreateInstanceConfigRequest {
pub instance_config: Option<InstanceConfig>,
pub instance_config_id: Option<String>,
pub validate_only: Option<bool>,
}Expand description
The request for CreateInstanceConfig.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- instance configs create projects (request)
Fields§
§instance_config: Option<InstanceConfig>Required. The InstanceConfig proto of the configuration to create. instance_config.name must be /instanceConfigs/. instance_config.base_config must be a Google-managed configuration name, e.g. /instanceConfigs/us-east1, /instanceConfigs/nam3.
instance_config_id: Option<String>Required. The ID of the instance configuration to create. Valid identifiers are of the form custom-[-a-z0-9]*[a-z0-9] and must be between 2 and 64 characters in length. The custom- prefix is required to avoid name conflicts with Google-managed configurations.
validate_only: Option<bool>An option to validate, but not actually execute, a request, and provide the same response.
Trait Implementations§
Source§impl Clone for CreateInstanceConfigRequest
impl Clone for CreateInstanceConfigRequest
Source§fn clone(&self) -> CreateInstanceConfigRequest
fn clone(&self) -> CreateInstanceConfigRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more