Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.gkehub/v1beta.Fleet
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a fleet. Auto-naming is currently not supported for this resource.
Create Fleet Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Fleet(name: string, args?: FleetArgs, opts?: CustomResourceOptions);
@overload
def Fleet(resource_name: str,
args: Optional[FleetArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Fleet(resource_name: str,
opts: Optional[ResourceOptions] = None,
default_cluster_config: Optional[DefaultClusterConfigArgs] = None,
display_name: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
project: Optional[str] = None)
func NewFleet(ctx *Context, name string, args *FleetArgs, opts ...ResourceOption) (*Fleet, error)
public Fleet(string name, FleetArgs? args = null, CustomResourceOptions? opts = null)
type: google-native:gkehub/v1beta:Fleet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FleetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FleetArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FleetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FleetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FleetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var examplefleetResourceResourceFromGkehubv1beta = new GoogleNative.GKEHub.V1Beta.Fleet("examplefleetResourceResourceFromGkehubv1beta", new()
{
DefaultClusterConfig = new GoogleNative.GKEHub.V1Beta.Inputs.DefaultClusterConfigArgs
{
BinaryAuthorizationConfig = new GoogleNative.GKEHub.V1Beta.Inputs.BinaryAuthorizationConfigArgs
{
EvaluationMode = GoogleNative.GKEHub.V1Beta.BinaryAuthorizationConfigEvaluationMode.EvaluationModeUnspecified,
PolicyBindings = new[]
{
new GoogleNative.GKEHub.V1Beta.Inputs.PolicyBindingArgs
{
Name = "string",
},
},
},
SecurityPostureConfig = new GoogleNative.GKEHub.V1Beta.Inputs.SecurityPostureConfigArgs
{
Mode = GoogleNative.GKEHub.V1Beta.SecurityPostureConfigMode.ModeUnspecified,
VulnerabilityMode = GoogleNative.GKEHub.V1Beta.SecurityPostureConfigVulnerabilityMode.VulnerabilityModeUnspecified,
},
},
DisplayName = "string",
Labels =
{
{ "string", "string" },
},
Location = "string",
Project = "string",
});
example, err := gkehubv1beta.NewFleet(ctx, "examplefleetResourceResourceFromGkehubv1beta", &gkehubv1beta.FleetArgs{
DefaultClusterConfig: &gkehub.DefaultClusterConfigArgs{
BinaryAuthorizationConfig: &gkehub.BinaryAuthorizationConfigArgs{
EvaluationMode: gkehubv1beta.BinaryAuthorizationConfigEvaluationModeEvaluationModeUnspecified,
PolicyBindings: gkehub.PolicyBindingArray{
&gkehub.PolicyBindingArgs{
Name: pulumi.String("string"),
},
},
},
SecurityPostureConfig: &gkehub.SecurityPostureConfigArgs{
Mode: gkehubv1beta.SecurityPostureConfigModeModeUnspecified,
VulnerabilityMode: gkehubv1beta.SecurityPostureConfigVulnerabilityModeVulnerabilityModeUnspecified,
},
},
DisplayName: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Location: pulumi.String("string"),
Project: pulumi.String("string"),
})
var examplefleetResourceResourceFromGkehubv1beta = new Fleet("examplefleetResourceResourceFromGkehubv1beta", FleetArgs.builder()
.defaultClusterConfig(DefaultClusterConfigArgs.builder()
.binaryAuthorizationConfig(BinaryAuthorizationConfigArgs.builder()
.evaluationMode("EVALUATION_MODE_UNSPECIFIED")
.policyBindings(PolicyBindingArgs.builder()
.name("string")
.build())
.build())
.securityPostureConfig(SecurityPostureConfigArgs.builder()
.mode("MODE_UNSPECIFIED")
.vulnerabilityMode("VULNERABILITY_MODE_UNSPECIFIED")
.build())
.build())
.displayName("string")
.labels(Map.of("string", "string"))
.location("string")
.project("string")
.build());
examplefleet_resource_resource_from_gkehubv1beta = google_native.gkehub.v1beta.Fleet("examplefleetResourceResourceFromGkehubv1beta",
default_cluster_config=google_native.gkehub.v1beta.DefaultClusterConfigArgs(
binary_authorization_config=google_native.gkehub.v1beta.BinaryAuthorizationConfigArgs(
evaluation_mode=google_native.gkehub.v1beta.BinaryAuthorizationConfigEvaluationMode.EVALUATION_MODE_UNSPECIFIED,
policy_bindings=[google_native.gkehub.v1beta.PolicyBindingArgs(
name="string",
)],
),
security_posture_config=google_native.gkehub.v1beta.SecurityPostureConfigArgs(
mode=google_native.gkehub.v1beta.SecurityPostureConfigMode.MODE_UNSPECIFIED,
vulnerability_mode=google_native.gkehub.v1beta.SecurityPostureConfigVulnerabilityMode.VULNERABILITY_MODE_UNSPECIFIED,
),
),
display_name="string",
labels={
"string": "string",
},
location="string",
project="string")
const examplefleetResourceResourceFromGkehubv1beta = new google_native.gkehub.v1beta.Fleet("examplefleetResourceResourceFromGkehubv1beta", {
defaultClusterConfig: {
binaryAuthorizationConfig: {
evaluationMode: google_native.gkehub.v1beta.BinaryAuthorizationConfigEvaluationMode.EvaluationModeUnspecified,
policyBindings: [{
name: "string",
}],
},
securityPostureConfig: {
mode: google_native.gkehub.v1beta.SecurityPostureConfigMode.ModeUnspecified,
vulnerabilityMode: google_native.gkehub.v1beta.SecurityPostureConfigVulnerabilityMode.VulnerabilityModeUnspecified,
},
},
displayName: "string",
labels: {
string: "string",
},
location: "string",
project: "string",
});
type: google-native:gkehub/v1beta:Fleet
properties:
defaultClusterConfig:
binaryAuthorizationConfig:
evaluationMode: EVALUATION_MODE_UNSPECIFIED
policyBindings:
- name: string
securityPostureConfig:
mode: MODE_UNSPECIFIED
vulnerabilityMode: VULNERABILITY_MODE_UNSPECIFIED
displayName: string
labels:
string: string
location: string
project: string
Fleet Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Fleet resource accepts the following input properties:
- Default
Cluster Pulumi.Config Google Native. GKEHub. V1Beta. Inputs. Default Cluster Config - Optional. The default cluster configurations to apply across the fleet.
- Display
Name string - Optional. A user-assigned display name of the Fleet. When present, it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, single-quote, double-quote, space, and exclamation point. Example:
Production Fleet
- Labels Dictionary<string, string>
- Optional. Labels for this Fleet.
- Location string
- Project string
- Default
Cluster DefaultConfig Cluster Config Args - Optional. The default cluster configurations to apply across the fleet.
- Display
Name string - Optional. A user-assigned display name of the Fleet. When present, it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, single-quote, double-quote, space, and exclamation point. Example:
Production Fleet
- Labels map[string]string
- Optional. Labels for this Fleet.
- Location string
- Project string
- default
Cluster DefaultConfig Cluster Config - Optional. The default cluster configurations to apply across the fleet.
- display
Name String - Optional. A user-assigned display name of the Fleet. When present, it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, single-quote, double-quote, space, and exclamation point. Example:
Production Fleet
- labels Map<String,String>
- Optional. Labels for this Fleet.
- location String
- project String
- default
Cluster DefaultConfig Cluster Config - Optional. The default cluster configurations to apply across the fleet.
- display
Name string - Optional. A user-assigned display name of the Fleet. When present, it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, single-quote, double-quote, space, and exclamation point. Example:
Production Fleet
- labels {[key: string]: string}
- Optional. Labels for this Fleet.
- location string
- project string
- default_
cluster_ Defaultconfig Cluster Config Args - Optional. The default cluster configurations to apply across the fleet.
- display_
name str - Optional. A user-assigned display name of the Fleet. When present, it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, single-quote, double-quote, space, and exclamation point. Example:
Production Fleet
- labels Mapping[str, str]
- Optional. Labels for this Fleet.
- location str
- project str
- default
Cluster Property MapConfig - Optional. The default cluster configurations to apply across the fleet.
- display
Name String - Optional. A user-assigned display name of the Fleet. When present, it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, single-quote, double-quote, space, and exclamation point. Example:
Production Fleet
- labels Map<String>
- Optional. Labels for this Fleet.
- location String
- project String
Outputs
All input properties are implicitly available as output properties. Additionally, the Fleet resource produces the following output properties:
- Create
Time string - When the Fleet was created.
- Delete
Time string - When the Fleet was deleted.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The full, unique resource name of this fleet in the format of
projects/{project}/locations/{location}/fleets/{fleet}
. Each Google Cloud project can have at most one fleet resource, named "default". - State
Pulumi.
Google Native. GKEHub. V1Beta. Outputs. Fleet Lifecycle State Response - State of the namespace resource.
- Uid string
- Google-generated UUID for this resource. This is unique across all Fleet resources. If a Fleet resource is deleted and another resource with the same name is created, it gets a different uid.
- Update
Time string - When the Fleet was last updated.
- Create
Time string - When the Fleet was created.
- Delete
Time string - When the Fleet was deleted.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The full, unique resource name of this fleet in the format of
projects/{project}/locations/{location}/fleets/{fleet}
. Each Google Cloud project can have at most one fleet resource, named "default". - State
Fleet
Lifecycle State Response - State of the namespace resource.
- Uid string
- Google-generated UUID for this resource. This is unique across all Fleet resources. If a Fleet resource is deleted and another resource with the same name is created, it gets a different uid.
- Update
Time string - When the Fleet was last updated.
- create
Time String - When the Fleet was created.
- delete
Time String - When the Fleet was deleted.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The full, unique resource name of this fleet in the format of
projects/{project}/locations/{location}/fleets/{fleet}
. Each Google Cloud project can have at most one fleet resource, named "default". - state
Fleet
Lifecycle State Response - State of the namespace resource.
- uid String
- Google-generated UUID for this resource. This is unique across all Fleet resources. If a Fleet resource is deleted and another resource with the same name is created, it gets a different uid.
- update
Time String - When the Fleet was last updated.
- create
Time string - When the Fleet was created.
- delete
Time string - When the Fleet was deleted.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The full, unique resource name of this fleet in the format of
projects/{project}/locations/{location}/fleets/{fleet}
. Each Google Cloud project can have at most one fleet resource, named "default". - state
Fleet
Lifecycle State Response - State of the namespace resource.
- uid string
- Google-generated UUID for this resource. This is unique across all Fleet resources. If a Fleet resource is deleted and another resource with the same name is created, it gets a different uid.
- update
Time string - When the Fleet was last updated.
- create_
time str - When the Fleet was created.
- delete_
time str - When the Fleet was deleted.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The full, unique resource name of this fleet in the format of
projects/{project}/locations/{location}/fleets/{fleet}
. Each Google Cloud project can have at most one fleet resource, named "default". - state
Fleet
Lifecycle State Response - State of the namespace resource.
- uid str
- Google-generated UUID for this resource. This is unique across all Fleet resources. If a Fleet resource is deleted and another resource with the same name is created, it gets a different uid.
- update_
time str - When the Fleet was last updated.
- create
Time String - When the Fleet was created.
- delete
Time String - When the Fleet was deleted.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The full, unique resource name of this fleet in the format of
projects/{project}/locations/{location}/fleets/{fleet}
. Each Google Cloud project can have at most one fleet resource, named "default". - state Property Map
- State of the namespace resource.
- uid String
- Google-generated UUID for this resource. This is unique across all Fleet resources. If a Fleet resource is deleted and another resource with the same name is created, it gets a different uid.
- update
Time String - When the Fleet was last updated.
Supporting Types
BinaryAuthorizationConfig, BinaryAuthorizationConfigArgs
- Evaluation
Mode Pulumi.Google Native. GKEHub. V1Beta. Binary Authorization Config Evaluation Mode - Optional. Mode of operation for binauthz policy evaluation.
- Policy
Bindings List<Pulumi.Google Native. GKEHub. V1Beta. Inputs. Policy Binding> - Optional. Binauthz policies that apply to this cluster.
- Evaluation
Mode BinaryAuthorization Config Evaluation Mode - Optional. Mode of operation for binauthz policy evaluation.
- Policy
Bindings []PolicyBinding - Optional. Binauthz policies that apply to this cluster.
- evaluation
Mode BinaryAuthorization Config Evaluation Mode - Optional. Mode of operation for binauthz policy evaluation.
- policy
Bindings List<PolicyBinding> - Optional. Binauthz policies that apply to this cluster.
- evaluation
Mode BinaryAuthorization Config Evaluation Mode - Optional. Mode of operation for binauthz policy evaluation.
- policy
Bindings PolicyBinding[] - Optional. Binauthz policies that apply to this cluster.
- evaluation_
mode BinaryAuthorization Config Evaluation Mode - Optional. Mode of operation for binauthz policy evaluation.
- policy_
bindings Sequence[PolicyBinding] - Optional. Binauthz policies that apply to this cluster.
- evaluation
Mode "EVALUATION_MODE_UNSPECIFIED" | "DISABLED" | "POLICY_BINDINGS" - Optional. Mode of operation for binauthz policy evaluation.
- policy
Bindings List<Property Map> - Optional. Binauthz policies that apply to this cluster.
BinaryAuthorizationConfigEvaluationMode, BinaryAuthorizationConfigEvaluationModeArgs
- Evaluation
Mode Unspecified - EVALUATION_MODE_UNSPECIFIEDDefault value
- Disabled
- DISABLEDDisable BinaryAuthorization
- Policy
Bindings - POLICY_BINDINGSUse Binary Authorization with the policies specified in policy_bindings.
- Binary
Authorization Config Evaluation Mode Evaluation Mode Unspecified - EVALUATION_MODE_UNSPECIFIEDDefault value
- Binary
Authorization Config Evaluation Mode Disabled - DISABLEDDisable BinaryAuthorization
- Binary
Authorization Config Evaluation Mode Policy Bindings - POLICY_BINDINGSUse Binary Authorization with the policies specified in policy_bindings.
- Evaluation
Mode Unspecified - EVALUATION_MODE_UNSPECIFIEDDefault value
- Disabled
- DISABLEDDisable BinaryAuthorization
- Policy
Bindings - POLICY_BINDINGSUse Binary Authorization with the policies specified in policy_bindings.
- Evaluation
Mode Unspecified - EVALUATION_MODE_UNSPECIFIEDDefault value
- Disabled
- DISABLEDDisable BinaryAuthorization
- Policy
Bindings - POLICY_BINDINGSUse Binary Authorization with the policies specified in policy_bindings.
- EVALUATION_MODE_UNSPECIFIED
- EVALUATION_MODE_UNSPECIFIEDDefault value
- DISABLED
- DISABLEDDisable BinaryAuthorization
- POLICY_BINDINGS
- POLICY_BINDINGSUse Binary Authorization with the policies specified in policy_bindings.
- "EVALUATION_MODE_UNSPECIFIED"
- EVALUATION_MODE_UNSPECIFIEDDefault value
- "DISABLED"
- DISABLEDDisable BinaryAuthorization
- "POLICY_BINDINGS"
- POLICY_BINDINGSUse Binary Authorization with the policies specified in policy_bindings.
BinaryAuthorizationConfigResponse, BinaryAuthorizationConfigResponseArgs
- Evaluation
Mode string - Optional. Mode of operation for binauthz policy evaluation.
- Policy
Bindings List<Pulumi.Google Native. GKEHub. V1Beta. Inputs. Policy Binding Response> - Optional. Binauthz policies that apply to this cluster.
- Evaluation
Mode string - Optional. Mode of operation for binauthz policy evaluation.
- Policy
Bindings []PolicyBinding Response - Optional. Binauthz policies that apply to this cluster.
- evaluation
Mode String - Optional. Mode of operation for binauthz policy evaluation.
- policy
Bindings List<PolicyBinding Response> - Optional. Binauthz policies that apply to this cluster.
- evaluation
Mode string - Optional. Mode of operation for binauthz policy evaluation.
- policy
Bindings PolicyBinding Response[] - Optional. Binauthz policies that apply to this cluster.
- evaluation_
mode str - Optional. Mode of operation for binauthz policy evaluation.
- policy_
bindings Sequence[PolicyBinding Response] - Optional. Binauthz policies that apply to this cluster.
- evaluation
Mode String - Optional. Mode of operation for binauthz policy evaluation.
- policy
Bindings List<Property Map> - Optional. Binauthz policies that apply to this cluster.
DefaultClusterConfig, DefaultClusterConfigArgs
- Pulumi.
Google Native. GKEHub. V1Beta. Inputs. Binary Authorization Config - Optional. Enable/Disable binary authorization features for the cluster.
- Security
Posture Pulumi.Config Google Native. GKEHub. V1Beta. Inputs. Security Posture Config - Enable/Disable Security Posture features for the cluster.
- Binary
Authorization Config - Optional. Enable/Disable binary authorization features for the cluster.
- Security
Posture SecurityConfig Posture Config - Enable/Disable Security Posture features for the cluster.
- Binary
Authorization Config - Optional. Enable/Disable binary authorization features for the cluster.
- security
Posture SecurityConfig Posture Config - Enable/Disable Security Posture features for the cluster.
- Binary
Authorization Config - Optional. Enable/Disable binary authorization features for the cluster.
- security
Posture SecurityConfig Posture Config - Enable/Disable Security Posture features for the cluster.
- Binary
Authorization Config - Optional. Enable/Disable binary authorization features for the cluster.
- security_
posture_ Securityconfig Posture Config - Enable/Disable Security Posture features for the cluster.
- Property Map
- Optional. Enable/Disable binary authorization features for the cluster.
- security
Posture Property MapConfig - Enable/Disable Security Posture features for the cluster.
DefaultClusterConfigResponse, DefaultClusterConfigResponseArgs
- Pulumi.
Google Native. GKEHub. V1Beta. Inputs. Binary Authorization Config Response - Optional. Enable/Disable binary authorization features for the cluster.
- Security
Posture Pulumi.Config Google Native. GKEHub. V1Beta. Inputs. Security Posture Config Response - Enable/Disable Security Posture features for the cluster.
- Binary
Authorization Config Response - Optional. Enable/Disable binary authorization features for the cluster.
- Security
Posture SecurityConfig Posture Config Response - Enable/Disable Security Posture features for the cluster.
- Binary
Authorization Config Response - Optional. Enable/Disable binary authorization features for the cluster.
- security
Posture SecurityConfig Posture Config Response - Enable/Disable Security Posture features for the cluster.
- Binary
Authorization Config Response - Optional. Enable/Disable binary authorization features for the cluster.
- security
Posture SecurityConfig Posture Config Response - Enable/Disable Security Posture features for the cluster.
- Binary
Authorization Config Response - Optional. Enable/Disable binary authorization features for the cluster.
- security_
posture_ Securityconfig Posture Config Response - Enable/Disable Security Posture features for the cluster.
- Property Map
- Optional. Enable/Disable binary authorization features for the cluster.
- security
Posture Property MapConfig - Enable/Disable Security Posture features for the cluster.
FleetLifecycleStateResponse, FleetLifecycleStateResponseArgs
- Code string
- The current state of the Fleet resource.
- Code string
- The current state of the Fleet resource.
- code String
- The current state of the Fleet resource.
- code string
- The current state of the Fleet resource.
- code str
- The current state of the Fleet resource.
- code String
- The current state of the Fleet resource.
PolicyBinding, PolicyBindingArgs
- Name string
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
- Name string
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
- name String
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
- name string
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
- name str
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
- name String
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
PolicyBindingResponse, PolicyBindingResponseArgs
- Name string
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
- Name string
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
- name String
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
- name string
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
- name str
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
- name String
- The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format:
projects/{project_number}/platforms/gke/policies/{policy_id}
.
SecurityPostureConfig, SecurityPostureConfigArgs
- Mode
Pulumi.
Google Native. GKEHub. V1Beta. Security Posture Config Mode - Sets which mode to use for Security Posture features.
- Vulnerability
Mode Pulumi.Google Native. GKEHub. V1Beta. Security Posture Config Vulnerability Mode - Sets which mode to use for vulnerability scanning.
- Mode
Security
Posture Config Mode - Sets which mode to use for Security Posture features.
- Vulnerability
Mode SecurityPosture Config Vulnerability Mode - Sets which mode to use for vulnerability scanning.
- mode
Security
Posture Config Mode - Sets which mode to use for Security Posture features.
- vulnerability
Mode SecurityPosture Config Vulnerability Mode - Sets which mode to use for vulnerability scanning.
- mode
Security
Posture Config Mode - Sets which mode to use for Security Posture features.
- vulnerability
Mode SecurityPosture Config Vulnerability Mode - Sets which mode to use for vulnerability scanning.
- mode
Security
Posture Config Mode - Sets which mode to use for Security Posture features.
- vulnerability_
mode SecurityPosture Config Vulnerability Mode - Sets which mode to use for vulnerability scanning.
- mode "MODE_UNSPECIFIED" | "DISABLED" | "BASIC"
- Sets which mode to use for Security Posture features.
- vulnerability
Mode "VULNERABILITY_MODE_UNSPECIFIED" | "VULNERABILITY_DISABLED" | "VULNERABILITY_BASIC" | "VULNERABILITY_ENTERPRISE" - Sets which mode to use for vulnerability scanning.
SecurityPostureConfigMode, SecurityPostureConfigModeArgs
- Mode
Unspecified - MODE_UNSPECIFIEDDefault value not specified.
- Disabled
- DISABLEDDisables Security Posture features on the cluster.
- Basic
- BASICApplies Security Posture features on the cluster.
- Security
Posture Config Mode Mode Unspecified - MODE_UNSPECIFIEDDefault value not specified.
- Security
Posture Config Mode Disabled - DISABLEDDisables Security Posture features on the cluster.
- Security
Posture Config Mode Basic - BASICApplies Security Posture features on the cluster.
- Mode
Unspecified - MODE_UNSPECIFIEDDefault value not specified.
- Disabled
- DISABLEDDisables Security Posture features on the cluster.
- Basic
- BASICApplies Security Posture features on the cluster.
- Mode
Unspecified - MODE_UNSPECIFIEDDefault value not specified.
- Disabled
- DISABLEDDisables Security Posture features on the cluster.
- Basic
- BASICApplies Security Posture features on the cluster.
- MODE_UNSPECIFIED
- MODE_UNSPECIFIEDDefault value not specified.
- DISABLED
- DISABLEDDisables Security Posture features on the cluster.
- BASIC
- BASICApplies Security Posture features on the cluster.
- "MODE_UNSPECIFIED"
- MODE_UNSPECIFIEDDefault value not specified.
- "DISABLED"
- DISABLEDDisables Security Posture features on the cluster.
- "BASIC"
- BASICApplies Security Posture features on the cluster.
SecurityPostureConfigResponse, SecurityPostureConfigResponseArgs
- Mode string
- Sets which mode to use for Security Posture features.
- Vulnerability
Mode string - Sets which mode to use for vulnerability scanning.
- Mode string
- Sets which mode to use for Security Posture features.
- Vulnerability
Mode string - Sets which mode to use for vulnerability scanning.
- mode String
- Sets which mode to use for Security Posture features.
- vulnerability
Mode String - Sets which mode to use for vulnerability scanning.
- mode string
- Sets which mode to use for Security Posture features.
- vulnerability
Mode string - Sets which mode to use for vulnerability scanning.
- mode str
- Sets which mode to use for Security Posture features.
- vulnerability_
mode str - Sets which mode to use for vulnerability scanning.
- mode String
- Sets which mode to use for Security Posture features.
- vulnerability
Mode String - Sets which mode to use for vulnerability scanning.
SecurityPostureConfigVulnerabilityMode, SecurityPostureConfigVulnerabilityModeArgs
- Vulnerability
Mode Unspecified - VULNERABILITY_MODE_UNSPECIFIEDDefault value not specified.
- Vulnerability
Disabled - VULNERABILITY_DISABLEDDisables vulnerability scanning on the cluster.
- Vulnerability
Basic - VULNERABILITY_BASICApplies basic vulnerability scanning on the cluster.
- Vulnerability
Enterprise - VULNERABILITY_ENTERPRISEApplies the Security Posture's vulnerability on cluster Enterprise level features.
- Security
Posture Config Vulnerability Mode Vulnerability Mode Unspecified - VULNERABILITY_MODE_UNSPECIFIEDDefault value not specified.
- Security
Posture Config Vulnerability Mode Vulnerability Disabled - VULNERABILITY_DISABLEDDisables vulnerability scanning on the cluster.
- Security
Posture Config Vulnerability Mode Vulnerability Basic - VULNERABILITY_BASICApplies basic vulnerability scanning on the cluster.
- Security
Posture Config Vulnerability Mode Vulnerability Enterprise - VULNERABILITY_ENTERPRISEApplies the Security Posture's vulnerability on cluster Enterprise level features.
- Vulnerability
Mode Unspecified - VULNERABILITY_MODE_UNSPECIFIEDDefault value not specified.
- Vulnerability
Disabled - VULNERABILITY_DISABLEDDisables vulnerability scanning on the cluster.
- Vulnerability
Basic - VULNERABILITY_BASICApplies basic vulnerability scanning on the cluster.
- Vulnerability
Enterprise - VULNERABILITY_ENTERPRISEApplies the Security Posture's vulnerability on cluster Enterprise level features.
- Vulnerability
Mode Unspecified - VULNERABILITY_MODE_UNSPECIFIEDDefault value not specified.
- Vulnerability
Disabled - VULNERABILITY_DISABLEDDisables vulnerability scanning on the cluster.
- Vulnerability
Basic - VULNERABILITY_BASICApplies basic vulnerability scanning on the cluster.
- Vulnerability
Enterprise - VULNERABILITY_ENTERPRISEApplies the Security Posture's vulnerability on cluster Enterprise level features.
- VULNERABILITY_MODE_UNSPECIFIED
- VULNERABILITY_MODE_UNSPECIFIEDDefault value not specified.
- VULNERABILITY_DISABLED
- VULNERABILITY_DISABLEDDisables vulnerability scanning on the cluster.
- VULNERABILITY_BASIC
- VULNERABILITY_BASICApplies basic vulnerability scanning on the cluster.
- VULNERABILITY_ENTERPRISE
- VULNERABILITY_ENTERPRISEApplies the Security Posture's vulnerability on cluster Enterprise level features.
- "VULNERABILITY_MODE_UNSPECIFIED"
- VULNERABILITY_MODE_UNSPECIFIEDDefault value not specified.
- "VULNERABILITY_DISABLED"
- VULNERABILITY_DISABLEDDisables vulnerability scanning on the cluster.
- "VULNERABILITY_BASIC"
- VULNERABILITY_BASICApplies basic vulnerability scanning on the cluster.
- "VULNERABILITY_ENTERPRISE"
- VULNERABILITY_ENTERPRISEApplies the Security Posture's vulnerability on cluster Enterprise level features.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.