Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.gkehub/v1alpha2.Membership
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new Membership. This is currently only supported for GKE clusters on Google Cloud. To register other clusters, follow the instructions at https://cloud.google.com/anthos/multicluster-management/connect/registering-a-cluster. Auto-naming is currently not supported for this resource.
Create Membership Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Membership(name: string, args: MembershipArgs, opts?: CustomResourceOptions);
@overload
def Membership(resource_name: str,
args: MembershipArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Membership(resource_name: str,
opts: Optional[ResourceOptions] = None,
membership_id: Optional[str] = None,
authority: Optional[AuthorityArgs] = None,
endpoint: Optional[MembershipEndpointArgs] = None,
external_id: Optional[str] = None,
infrastructure_type: Optional[MembershipInfrastructureType] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
monitoring_config: Optional[MonitoringConfigArgs] = None,
project: Optional[str] = None)
func NewMembership(ctx *Context, name string, args MembershipArgs, opts ...ResourceOption) (*Membership, error)
public Membership(string name, MembershipArgs args, CustomResourceOptions? opts = null)
public Membership(String name, MembershipArgs args)
public Membership(String name, MembershipArgs args, CustomResourceOptions options)
type: google-native:gkehub/v1alpha2:Membership
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 MembershipArgs
- 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 MembershipArgs
- 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 MembershipArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MembershipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MembershipArgs
- 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 examplemembershipResourceResourceFromGkehubv1alpha2 = new GoogleNative.GKEHub.V1Alpha2.Membership("examplemembershipResourceResourceFromGkehubv1alpha2", new()
{
MembershipId = "string",
Authority = new GoogleNative.GKEHub.V1Alpha2.Inputs.AuthorityArgs
{
Issuer = "string",
OidcJwks = "string",
},
Endpoint = new GoogleNative.GKEHub.V1Alpha2.Inputs.MembershipEndpointArgs
{
ApplianceCluster = new GoogleNative.GKEHub.V1Alpha2.Inputs.ApplianceClusterArgs
{
ResourceLink = "string",
},
EdgeCluster = new GoogleNative.GKEHub.V1Alpha2.Inputs.EdgeClusterArgs
{
ResourceLink = "string",
},
GkeCluster = new GoogleNative.GKEHub.V1Alpha2.Inputs.GkeClusterArgs
{
ResourceLink = "string",
},
KubernetesResource = new GoogleNative.GKEHub.V1Alpha2.Inputs.KubernetesResourceArgs
{
MembershipCrManifest = "string",
ResourceOptions = new GoogleNative.GKEHub.V1Alpha2.Inputs.ResourceOptionsArgs
{
ConnectVersion = "string",
K8sVersion = "string",
V1beta1Crd = false,
},
},
MultiCloudCluster = new GoogleNative.GKEHub.V1Alpha2.Inputs.MultiCloudClusterArgs
{
ResourceLink = "string",
},
OnPremCluster = new GoogleNative.GKEHub.V1Alpha2.Inputs.OnPremClusterArgs
{
AdminCluster = false,
ClusterType = GoogleNative.GKEHub.V1Alpha2.OnPremClusterClusterType.ClustertypeUnspecified,
ResourceLink = "string",
},
},
ExternalId = "string",
InfrastructureType = GoogleNative.GKEHub.V1Alpha2.MembershipInfrastructureType.InfrastructureTypeUnspecified,
Labels =
{
{ "string", "string" },
},
Location = "string",
MonitoringConfig = new GoogleNative.GKEHub.V1Alpha2.Inputs.MonitoringConfigArgs
{
Cluster = "string",
ClusterHash = "string",
KubernetesMetricsPrefix = "string",
Location = "string",
Project = "string",
},
Project = "string",
});
example, err := gkehubv1alpha2.NewMembership(ctx, "examplemembershipResourceResourceFromGkehubv1alpha2", &gkehubv1alpha2.MembershipArgs{
MembershipId: pulumi.String("string"),
Authority: &gkehub.AuthorityArgs{
Issuer: pulumi.String("string"),
OidcJwks: pulumi.String("string"),
},
Endpoint: &gkehub.MembershipEndpointArgs{
ApplianceCluster: &gkehub.ApplianceClusterArgs{
ResourceLink: pulumi.String("string"),
},
EdgeCluster: &gkehub.EdgeClusterArgs{
ResourceLink: pulumi.String("string"),
},
GkeCluster: &gkehub.GkeClusterArgs{
ResourceLink: pulumi.String("string"),
},
KubernetesResource: &gkehub.KubernetesResourceArgs{
MembershipCrManifest: pulumi.String("string"),
ResourceOptions: &gkehub.ResourceOptionsArgs{
ConnectVersion: pulumi.String("string"),
K8sVersion: pulumi.String("string"),
V1beta1Crd: pulumi.Bool(false),
},
},
MultiCloudCluster: &gkehub.MultiCloudClusterArgs{
ResourceLink: pulumi.String("string"),
},
OnPremCluster: &gkehub.OnPremClusterArgs{
AdminCluster: pulumi.Bool(false),
ClusterType: gkehubv1alpha2.OnPremClusterClusterTypeClustertypeUnspecified,
ResourceLink: pulumi.String("string"),
},
},
ExternalId: pulumi.String("string"),
InfrastructureType: gkehubv1alpha2.MembershipInfrastructureTypeInfrastructureTypeUnspecified,
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Location: pulumi.String("string"),
MonitoringConfig: &gkehub.MonitoringConfigArgs{
Cluster: pulumi.String("string"),
ClusterHash: pulumi.String("string"),
KubernetesMetricsPrefix: pulumi.String("string"),
Location: pulumi.String("string"),
Project: pulumi.String("string"),
},
Project: pulumi.String("string"),
})
var examplemembershipResourceResourceFromGkehubv1alpha2 = new Membership("examplemembershipResourceResourceFromGkehubv1alpha2", MembershipArgs.builder()
.membershipId("string")
.authority(AuthorityArgs.builder()
.issuer("string")
.oidcJwks("string")
.build())
.endpoint(MembershipEndpointArgs.builder()
.applianceCluster(ApplianceClusterArgs.builder()
.resourceLink("string")
.build())
.edgeCluster(EdgeClusterArgs.builder()
.resourceLink("string")
.build())
.gkeCluster(GkeClusterArgs.builder()
.resourceLink("string")
.build())
.kubernetesResource(KubernetesResourceArgs.builder()
.membershipCrManifest("string")
.resourceOptions(ResourceOptionsArgs.builder()
.connectVersion("string")
.k8sVersion("string")
.v1beta1Crd(false)
.build())
.build())
.multiCloudCluster(MultiCloudClusterArgs.builder()
.resourceLink("string")
.build())
.onPremCluster(OnPremClusterArgs.builder()
.adminCluster(false)
.clusterType("CLUSTERTYPE_UNSPECIFIED")
.resourceLink("string")
.build())
.build())
.externalId("string")
.infrastructureType("INFRASTRUCTURE_TYPE_UNSPECIFIED")
.labels(Map.of("string", "string"))
.location("string")
.monitoringConfig(MonitoringConfigArgs.builder()
.cluster("string")
.clusterHash("string")
.kubernetesMetricsPrefix("string")
.location("string")
.project("string")
.build())
.project("string")
.build());
examplemembership_resource_resource_from_gkehubv1alpha2 = google_native.gkehub.v1alpha2.Membership("examplemembershipResourceResourceFromGkehubv1alpha2",
membership_id="string",
authority=google_native.gkehub.v1alpha2.AuthorityArgs(
issuer="string",
oidc_jwks="string",
),
endpoint=google_native.gkehub.v1alpha2.MembershipEndpointArgs(
appliance_cluster=google_native.gkehub.v1alpha2.ApplianceClusterArgs(
resource_link="string",
),
edge_cluster=google_native.gkehub.v1alpha2.EdgeClusterArgs(
resource_link="string",
),
gke_cluster=google_native.gkehub.v1alpha2.GkeClusterArgs(
resource_link="string",
),
kubernetes_resource=google_native.gkehub.v1alpha2.KubernetesResourceArgs(
membership_cr_manifest="string",
resource_options=google_native.gkehub.v1alpha2.ResourceOptionsArgs(
connect_version="string",
k8s_version="string",
v1beta1_crd=False,
),
),
multi_cloud_cluster=google_native.gkehub.v1alpha2.MultiCloudClusterArgs(
resource_link="string",
),
on_prem_cluster=google_native.gkehub.v1alpha2.OnPremClusterArgs(
admin_cluster=False,
cluster_type=google_native.gkehub.v1alpha2.OnPremClusterClusterType.CLUSTERTYPE_UNSPECIFIED,
resource_link="string",
),
),
external_id="string",
infrastructure_type=google_native.gkehub.v1alpha2.MembershipInfrastructureType.INFRASTRUCTURE_TYPE_UNSPECIFIED,
labels={
"string": "string",
},
location="string",
monitoring_config=google_native.gkehub.v1alpha2.MonitoringConfigArgs(
cluster="string",
cluster_hash="string",
kubernetes_metrics_prefix="string",
location="string",
project="string",
),
project="string")
const examplemembershipResourceResourceFromGkehubv1alpha2 = new google_native.gkehub.v1alpha2.Membership("examplemembershipResourceResourceFromGkehubv1alpha2", {
membershipId: "string",
authority: {
issuer: "string",
oidcJwks: "string",
},
endpoint: {
applianceCluster: {
resourceLink: "string",
},
edgeCluster: {
resourceLink: "string",
},
gkeCluster: {
resourceLink: "string",
},
kubernetesResource: {
membershipCrManifest: "string",
resourceOptions: {
connectVersion: "string",
k8sVersion: "string",
v1beta1Crd: false,
},
},
multiCloudCluster: {
resourceLink: "string",
},
onPremCluster: {
adminCluster: false,
clusterType: google_native.gkehub.v1alpha2.OnPremClusterClusterType.ClustertypeUnspecified,
resourceLink: "string",
},
},
externalId: "string",
infrastructureType: google_native.gkehub.v1alpha2.MembershipInfrastructureType.InfrastructureTypeUnspecified,
labels: {
string: "string",
},
location: "string",
monitoringConfig: {
cluster: "string",
clusterHash: "string",
kubernetesMetricsPrefix: "string",
location: "string",
project: "string",
},
project: "string",
});
type: google-native:gkehub/v1alpha2:Membership
properties:
authority:
issuer: string
oidcJwks: string
endpoint:
applianceCluster:
resourceLink: string
edgeCluster:
resourceLink: string
gkeCluster:
resourceLink: string
kubernetesResource:
membershipCrManifest: string
resourceOptions:
connectVersion: string
k8sVersion: string
v1beta1Crd: false
multiCloudCluster:
resourceLink: string
onPremCluster:
adminCluster: false
clusterType: CLUSTERTYPE_UNSPECIFIED
resourceLink: string
externalId: string
infrastructureType: INFRASTRUCTURE_TYPE_UNSPECIFIED
labels:
string: string
location: string
membershipId: string
monitoringConfig:
cluster: string
clusterHash: string
kubernetesMetricsPrefix: string
location: string
project: string
project: string
Membership 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 Membership resource accepts the following input properties:
- Membership
Id string - Required. Client chosen ID for the membership.
membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - Pulumi.
Google Native. GKEHub. V1Alpha2. Inputs. Authority - Optional. How to identify workloads from this Membership. See the documentation on Workload Identity for more details: https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
- Endpoint
Pulumi.
Google Native. GKEHub. V1Alpha2. Inputs. Membership Endpoint - Optional. Endpoint information to reach this member.
- External
Id string - Optional. An externally-generated and managed ID for this Membership. This ID may be modified after creation, but this is not recommended. For GKE clusters, external_id is managed by the Hub API and updates will be ignored. The ID must match the regex:
a-zA-Z0-9*
If this Membership represents a Kubernetes cluster, this value should be set to the UID of thekube-system
namespace object. - Infrastructure
Type Pulumi.Google Native. GKEHub. V1Alpha2. Membership Infrastructure Type - Optional. The infrastructure type this Membership is running on.
- Labels Dictionary<string, string>
- Optional. Labels for this membership.
- Location string
- Monitoring
Config Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Monitoring Config - Optional. The monitoring config information for this membership.
- Project string
- Membership
Id string - Required. Client chosen ID for the membership.
membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - Authority
Args - Optional. How to identify workloads from this Membership. See the documentation on Workload Identity for more details: https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
- Endpoint
Membership
Endpoint Args - Optional. Endpoint information to reach this member.
- External
Id string - Optional. An externally-generated and managed ID for this Membership. This ID may be modified after creation, but this is not recommended. For GKE clusters, external_id is managed by the Hub API and updates will be ignored. The ID must match the regex:
a-zA-Z0-9*
If this Membership represents a Kubernetes cluster, this value should be set to the UID of thekube-system
namespace object. - Infrastructure
Type MembershipInfrastructure Type - Optional. The infrastructure type this Membership is running on.
- Labels map[string]string
- Optional. Labels for this membership.
- Location string
- Monitoring
Config MonitoringConfig Args - Optional. The monitoring config information for this membership.
- Project string
- membership
Id String - Required. Client chosen ID for the membership.
membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - Authority
- Optional. How to identify workloads from this Membership. See the documentation on Workload Identity for more details: https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
- endpoint
Membership
Endpoint - Optional. Endpoint information to reach this member.
- external
Id String - Optional. An externally-generated and managed ID for this Membership. This ID may be modified after creation, but this is not recommended. For GKE clusters, external_id is managed by the Hub API and updates will be ignored. The ID must match the regex:
a-zA-Z0-9*
If this Membership represents a Kubernetes cluster, this value should be set to the UID of thekube-system
namespace object. - infrastructure
Type MembershipInfrastructure Type - Optional. The infrastructure type this Membership is running on.
- labels Map<String,String>
- Optional. Labels for this membership.
- location String
- monitoring
Config MonitoringConfig - Optional. The monitoring config information for this membership.
- project String
- membership
Id string - Required. Client chosen ID for the membership.
membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - Authority
- Optional. How to identify workloads from this Membership. See the documentation on Workload Identity for more details: https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
- endpoint
Membership
Endpoint - Optional. Endpoint information to reach this member.
- external
Id string - Optional. An externally-generated and managed ID for this Membership. This ID may be modified after creation, but this is not recommended. For GKE clusters, external_id is managed by the Hub API and updates will be ignored. The ID must match the regex:
a-zA-Z0-9*
If this Membership represents a Kubernetes cluster, this value should be set to the UID of thekube-system
namespace object. - infrastructure
Type MembershipInfrastructure Type - Optional. The infrastructure type this Membership is running on.
- labels {[key: string]: string}
- Optional. Labels for this membership.
- location string
- monitoring
Config MonitoringConfig - Optional. The monitoring config information for this membership.
- project string
- membership_
id str - Required. Client chosen ID for the membership.
membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - Authority
Args - Optional. How to identify workloads from this Membership. See the documentation on Workload Identity for more details: https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
- endpoint
Membership
Endpoint Args - Optional. Endpoint information to reach this member.
- external_
id str - Optional. An externally-generated and managed ID for this Membership. This ID may be modified after creation, but this is not recommended. For GKE clusters, external_id is managed by the Hub API and updates will be ignored. The ID must match the regex:
a-zA-Z0-9*
If this Membership represents a Kubernetes cluster, this value should be set to the UID of thekube-system
namespace object. - infrastructure_
type MembershipInfrastructure Type - Optional. The infrastructure type this Membership is running on.
- labels Mapping[str, str]
- Optional. Labels for this membership.
- location str
- monitoring_
config MonitoringConfig Args - Optional. The monitoring config information for this membership.
- project str
- membership
Id String - Required. Client chosen ID for the membership.
membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - Property Map
- Optional. How to identify workloads from this Membership. See the documentation on Workload Identity for more details: https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
- endpoint Property Map
- Optional. Endpoint information to reach this member.
- external
Id String - Optional. An externally-generated and managed ID for this Membership. This ID may be modified after creation, but this is not recommended. For GKE clusters, external_id is managed by the Hub API and updates will be ignored. The ID must match the regex:
a-zA-Z0-9*
If this Membership represents a Kubernetes cluster, this value should be set to the UID of thekube-system
namespace object. - infrastructure
Type "INFRASTRUCTURE_TYPE_UNSPECIFIED" | "ON_PREM" | "MULTI_CLOUD" - Optional. The infrastructure type this Membership is running on.
- labels Map<String>
- Optional. Labels for this membership.
- location String
- monitoring
Config Property Map - Optional. The monitoring config information for this membership.
- project String
Outputs
All input properties are implicitly available as output properties. Additionally, the Membership resource produces the following output properties:
- Create
Time string - When the Membership was created.
- Delete
Time string - When the Membership was deleted.
- Description string
- Description of this membership, limited to 63 characters. Must match the regex:
a-zA-Z0-9*
This field is present for legacy purposes. - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Connection stringTime - For clusters using Connect, the timestamp of the most recent connection established with Google Cloud. This time is updated every several minutes, not continuously. For clusters that do not use GKE Connect, or that have never connected successfully, this field will be unset.
- Name string
- The full, unique name of this Membership resource in the format
projects/*/locations/*/memberships/{membership_id}
, set during creation.membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - State
Pulumi.
Google Native. GKEHub. V1Alpha2. Outputs. Membership State Response - State of the Membership resource.
- Unique
Id string - Google-generated UUID for this resource. This is unique across all Membership resources. If a Membership resource is deleted and another resource with the same name is created, it gets a different unique_id.
- Update
Time string - When the Membership was last updated.
- Create
Time string - When the Membership was created.
- Delete
Time string - When the Membership was deleted.
- Description string
- Description of this membership, limited to 63 characters. Must match the regex:
a-zA-Z0-9*
This field is present for legacy purposes. - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Connection stringTime - For clusters using Connect, the timestamp of the most recent connection established with Google Cloud. This time is updated every several minutes, not continuously. For clusters that do not use GKE Connect, or that have never connected successfully, this field will be unset.
- Name string
- The full, unique name of this Membership resource in the format
projects/*/locations/*/memberships/{membership_id}
, set during creation.membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - State
Membership
State Response - State of the Membership resource.
- Unique
Id string - Google-generated UUID for this resource. This is unique across all Membership resources. If a Membership resource is deleted and another resource with the same name is created, it gets a different unique_id.
- Update
Time string - When the Membership was last updated.
- create
Time String - When the Membership was created.
- delete
Time String - When the Membership was deleted.
- description String
- Description of this membership, limited to 63 characters. Must match the regex:
a-zA-Z0-9*
This field is present for legacy purposes. - id String
- The provider-assigned unique ID for this managed resource.
- last
Connection StringTime - For clusters using Connect, the timestamp of the most recent connection established with Google Cloud. This time is updated every several minutes, not continuously. For clusters that do not use GKE Connect, or that have never connected successfully, this field will be unset.
- name String
- The full, unique name of this Membership resource in the format
projects/*/locations/*/memberships/{membership_id}
, set during creation.membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - state
Membership
State Response - State of the Membership resource.
- unique
Id String - Google-generated UUID for this resource. This is unique across all Membership resources. If a Membership resource is deleted and another resource with the same name is created, it gets a different unique_id.
- update
Time String - When the Membership was last updated.
- create
Time string - When the Membership was created.
- delete
Time string - When the Membership was deleted.
- description string
- Description of this membership, limited to 63 characters. Must match the regex:
a-zA-Z0-9*
This field is present for legacy purposes. - id string
- The provider-assigned unique ID for this managed resource.
- last
Connection stringTime - For clusters using Connect, the timestamp of the most recent connection established with Google Cloud. This time is updated every several minutes, not continuously. For clusters that do not use GKE Connect, or that have never connected successfully, this field will be unset.
- name string
- The full, unique name of this Membership resource in the format
projects/*/locations/*/memberships/{membership_id}
, set during creation.membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - state
Membership
State Response - State of the Membership resource.
- unique
Id string - Google-generated UUID for this resource. This is unique across all Membership resources. If a Membership resource is deleted and another resource with the same name is created, it gets a different unique_id.
- update
Time string - When the Membership was last updated.
- create_
time str - When the Membership was created.
- delete_
time str - When the Membership was deleted.
- description str
- Description of this membership, limited to 63 characters. Must match the regex:
a-zA-Z0-9*
This field is present for legacy purposes. - id str
- The provider-assigned unique ID for this managed resource.
- last_
connection_ strtime - For clusters using Connect, the timestamp of the most recent connection established with Google Cloud. This time is updated every several minutes, not continuously. For clusters that do not use GKE Connect, or that have never connected successfully, this field will be unset.
- name str
- The full, unique name of this Membership resource in the format
projects/*/locations/*/memberships/{membership_id}
, set during creation.membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - state
Membership
State Response - State of the Membership resource.
- unique_
id str - Google-generated UUID for this resource. This is unique across all Membership resources. If a Membership resource is deleted and another resource with the same name is created, it gets a different unique_id.
- update_
time str - When the Membership was last updated.
- create
Time String - When the Membership was created.
- delete
Time String - When the Membership was deleted.
- description String
- Description of this membership, limited to 63 characters. Must match the regex:
a-zA-Z0-9*
This field is present for legacy purposes. - id String
- The provider-assigned unique ID for this managed resource.
- last
Connection StringTime - For clusters using Connect, the timestamp of the most recent connection established with Google Cloud. This time is updated every several minutes, not continuously. For clusters that do not use GKE Connect, or that have never connected successfully, this field will be unset.
- name String
- The full, unique name of this Membership resource in the format
projects/*/locations/*/memberships/{membership_id}
, set during creation.membership_id
must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or-
3. It must start and end with an alphanumeric character Which can be expressed as the regex:[a-z0-9]([-a-z0-9]*[a-z0-9])?
, with a maximum length of 63 characters. - state Property Map
- State of the Membership resource.
- unique
Id String - Google-generated UUID for this resource. This is unique across all Membership resources. If a Membership resource is deleted and another resource with the same name is created, it gets a different unique_id.
- update
Time String - When the Membership was last updated.
Supporting Types
ApplianceCluster, ApplianceClusterArgs
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
- resource
Link string - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
- resource_
link str - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
ApplianceClusterResponse, ApplianceClusterResponseArgs
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
- resource
Link string - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
- resource_
link str - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
Authority, AuthorityArgs
- Issuer string
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - Oidc
Jwks string - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field.
- Issuer string
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - Oidc
Jwks string - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field.
- issuer String
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - oidc
Jwks String - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field.
- issuer string
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - oidc
Jwks string - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field.
- issuer str
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - oidc_
jwks str - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field.
- issuer String
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - oidc
Jwks String - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field.
AuthorityResponse, AuthorityResponseArgs
- Identity
Provider string - An identity provider that reflects the
issuer
in the workload identity pool. - Issuer string
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - Oidc
Jwks string - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field. - Workload
Identity stringPool - The name of the workload identity pool in which
issuer
will be recognized. There is a single Workload Identity Pool per Hub that is shared between all Memberships that belong to that Hub. For a Hub hosted in {PROJECT_ID}, the workload pool format is{PROJECT_ID}.hub.id.goog
, although this is subject to change in newer versions of this API.
- Identity
Provider string - An identity provider that reflects the
issuer
in the workload identity pool. - Issuer string
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - Oidc
Jwks string - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field. - Workload
Identity stringPool - The name of the workload identity pool in which
issuer
will be recognized. There is a single Workload Identity Pool per Hub that is shared between all Memberships that belong to that Hub. For a Hub hosted in {PROJECT_ID}, the workload pool format is{PROJECT_ID}.hub.id.goog
, although this is subject to change in newer versions of this API.
- identity
Provider String - An identity provider that reflects the
issuer
in the workload identity pool. - issuer String
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - oidc
Jwks String - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field. - workload
Identity StringPool - The name of the workload identity pool in which
issuer
will be recognized. There is a single Workload Identity Pool per Hub that is shared between all Memberships that belong to that Hub. For a Hub hosted in {PROJECT_ID}, the workload pool format is{PROJECT_ID}.hub.id.goog
, although this is subject to change in newer versions of this API.
- identity
Provider string - An identity provider that reflects the
issuer
in the workload identity pool. - issuer string
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - oidc
Jwks string - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field. - workload
Identity stringPool - The name of the workload identity pool in which
issuer
will be recognized. There is a single Workload Identity Pool per Hub that is shared between all Memberships that belong to that Hub. For a Hub hosted in {PROJECT_ID}, the workload pool format is{PROJECT_ID}.hub.id.goog
, although this is subject to change in newer versions of this API.
- identity_
provider str - An identity provider that reflects the
issuer
in the workload identity pool. - issuer str
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - oidc_
jwks str - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field. - workload_
identity_ strpool - The name of the workload identity pool in which
issuer
will be recognized. There is a single Workload Identity Pool per Hub that is shared between all Memberships that belong to that Hub. For a Hub hosted in {PROJECT_ID}, the workload pool format is{PROJECT_ID}.hub.id.goog
, although this is subject to change in newer versions of this API.
- identity
Provider String - An identity provider that reflects the
issuer
in the workload identity pool. - issuer String
- Optional. A JSON Web Token (JWT) issuer URI.
issuer
must start withhttps://
and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer, unlessoidc_jwks
is set. Clearingissuer
disables Workload Identity.issuer
cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity). - oidc
Jwks String - Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on
issuer
, and instead OIDC tokens will be validated using this field. - workload
Identity StringPool - The name of the workload identity pool in which
issuer
will be recognized. There is a single Workload Identity Pool per Hub that is shared between all Memberships that belong to that Hub. For a Hub hosted in {PROJECT_ID}, the workload pool format is{PROJECT_ID}.hub.id.goog
, although this is subject to change in newer versions of this API.
EdgeCluster, EdgeClusterArgs
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
- resource
Link string - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
- resource_
link str - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
EdgeClusterResponse, EdgeClusterResponseArgs
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
- resource
Link string - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
- resource_
link str - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
GkeCluster, GkeClusterArgs
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
- resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
- resource_
link str - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
GkeClusterResponse, GkeClusterResponseArgs
- Cluster
Missing bool - If cluster_missing is set then it denotes that the GKE cluster no longer exists in the GKE Control Plane.
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
- Cluster
Missing bool - If cluster_missing is set then it denotes that the GKE cluster no longer exists in the GKE Control Plane.
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
- cluster
Missing Boolean - If cluster_missing is set then it denotes that the GKE cluster no longer exists in the GKE Control Plane.
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
- cluster
Missing boolean - If cluster_missing is set then it denotes that the GKE cluster no longer exists in the GKE Control Plane.
- resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
- cluster_
missing bool - If cluster_missing is set then it denotes that the GKE cluster no longer exists in the GKE Control Plane.
- resource_
link str - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
- cluster
Missing Boolean - If cluster_missing is set then it denotes that the GKE cluster no longer exists in the GKE Control Plane.
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
KubernetesMetadataResponse, KubernetesMetadataResponseArgs
- Kubernetes
Api stringServer Version - Kubernetes API server version string as reported by '/version'.
- Memory
Mb int - The total memory capacity as reported by the sum of all Kubernetes nodes resources, defined in MB.
- Node
Count int - Node count as reported by Kubernetes nodes resources.
- Node
Provider stringId - Node providerID as reported by the first node in the list of nodes on the Kubernetes endpoint. On Kubernetes platforms that support zero-node clusters (like GKE-on-GCP), the node_count will be zero and the node_provider_id will be empty.
- Update
Time string - The time at which these details were last updated. This update_time is different from the Membership-level update_time since EndpointDetails are updated internally for API consumers.
- Vcpu
Count int - vCPU count as reported by Kubernetes nodes resources.
- Kubernetes
Api stringServer Version - Kubernetes API server version string as reported by '/version'.
- Memory
Mb int - The total memory capacity as reported by the sum of all Kubernetes nodes resources, defined in MB.
- Node
Count int - Node count as reported by Kubernetes nodes resources.
- Node
Provider stringId - Node providerID as reported by the first node in the list of nodes on the Kubernetes endpoint. On Kubernetes platforms that support zero-node clusters (like GKE-on-GCP), the node_count will be zero and the node_provider_id will be empty.
- Update
Time string - The time at which these details were last updated. This update_time is different from the Membership-level update_time since EndpointDetails are updated internally for API consumers.
- Vcpu
Count int - vCPU count as reported by Kubernetes nodes resources.
- kubernetes
Api StringServer Version - Kubernetes API server version string as reported by '/version'.
- memory
Mb Integer - The total memory capacity as reported by the sum of all Kubernetes nodes resources, defined in MB.
- node
Count Integer - Node count as reported by Kubernetes nodes resources.
- node
Provider StringId - Node providerID as reported by the first node in the list of nodes on the Kubernetes endpoint. On Kubernetes platforms that support zero-node clusters (like GKE-on-GCP), the node_count will be zero and the node_provider_id will be empty.
- update
Time String - The time at which these details were last updated. This update_time is different from the Membership-level update_time since EndpointDetails are updated internally for API consumers.
- vcpu
Count Integer - vCPU count as reported by Kubernetes nodes resources.
- kubernetes
Api stringServer Version - Kubernetes API server version string as reported by '/version'.
- memory
Mb number - The total memory capacity as reported by the sum of all Kubernetes nodes resources, defined in MB.
- node
Count number - Node count as reported by Kubernetes nodes resources.
- node
Provider stringId - Node providerID as reported by the first node in the list of nodes on the Kubernetes endpoint. On Kubernetes platforms that support zero-node clusters (like GKE-on-GCP), the node_count will be zero and the node_provider_id will be empty.
- update
Time string - The time at which these details were last updated. This update_time is different from the Membership-level update_time since EndpointDetails are updated internally for API consumers.
- vcpu
Count number - vCPU count as reported by Kubernetes nodes resources.
- kubernetes_
api_ strserver_ version - Kubernetes API server version string as reported by '/version'.
- memory_
mb int - The total memory capacity as reported by the sum of all Kubernetes nodes resources, defined in MB.
- node_
count int - Node count as reported by Kubernetes nodes resources.
- node_
provider_ strid - Node providerID as reported by the first node in the list of nodes on the Kubernetes endpoint. On Kubernetes platforms that support zero-node clusters (like GKE-on-GCP), the node_count will be zero and the node_provider_id will be empty.
- update_
time str - The time at which these details were last updated. This update_time is different from the Membership-level update_time since EndpointDetails are updated internally for API consumers.
- vcpu_
count int - vCPU count as reported by Kubernetes nodes resources.
- kubernetes
Api StringServer Version - Kubernetes API server version string as reported by '/version'.
- memory
Mb Number - The total memory capacity as reported by the sum of all Kubernetes nodes resources, defined in MB.
- node
Count Number - Node count as reported by Kubernetes nodes resources.
- node
Provider StringId - Node providerID as reported by the first node in the list of nodes on the Kubernetes endpoint. On Kubernetes platforms that support zero-node clusters (like GKE-on-GCP), the node_count will be zero and the node_provider_id will be empty.
- update
Time String - The time at which these details were last updated. This update_time is different from the Membership-level update_time since EndpointDetails are updated internally for API consumers.
- vcpu
Count Number - vCPU count as reported by Kubernetes nodes resources.
KubernetesResource, KubernetesResourceArgs
- Membership
Cr stringManifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- Resource
Options Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Resource Options - Optional. Options for Kubernetes resource generation.
- Membership
Cr stringManifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- Resource
Options ResourceOptions - Optional. Options for Kubernetes resource generation.
- membership
Cr StringManifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- resource
Options ResourceOptions - Optional. Options for Kubernetes resource generation.
- membership
Cr stringManifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- resource
Options ResourceOptions - Optional. Options for Kubernetes resource generation.
- membership_
cr_ strmanifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- resource_
options ResourceOptions - Optional. Options for Kubernetes resource generation.
- membership
Cr StringManifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- resource
Options Property Map - Optional. Options for Kubernetes resource generation.
KubernetesResourceResponse, KubernetesResourceResponseArgs
- Connect
Resources List<Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Resource Manifest Response> - The Kubernetes resources for installing the GKE Connect agent. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- Membership
Cr stringManifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- Membership
Resources List<Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Resource Manifest Response> - Additional Kubernetes resources that need to be applied to the cluster after Membership creation, and after every update. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- Resource
Options Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Resource Options Response - Optional. Options for Kubernetes resource generation.
- Connect
Resources []ResourceManifest Response - The Kubernetes resources for installing the GKE Connect agent. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- Membership
Cr stringManifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- Membership
Resources []ResourceManifest Response - Additional Kubernetes resources that need to be applied to the cluster after Membership creation, and after every update. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- Resource
Options ResourceOptions Response - Optional. Options for Kubernetes resource generation.
- connect
Resources List<ResourceManifest Response> - The Kubernetes resources for installing the GKE Connect agent. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- membership
Cr StringManifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- membership
Resources List<ResourceManifest Response> - Additional Kubernetes resources that need to be applied to the cluster after Membership creation, and after every update. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- resource
Options ResourceOptions Response - Optional. Options for Kubernetes resource generation.
- connect
Resources ResourceManifest Response[] - The Kubernetes resources for installing the GKE Connect agent. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- membership
Cr stringManifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- membership
Resources ResourceManifest Response[] - Additional Kubernetes resources that need to be applied to the cluster after Membership creation, and after every update. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- resource
Options ResourceOptions Response - Optional. Options for Kubernetes resource generation.
- connect_
resources Sequence[ResourceManifest Response] - The Kubernetes resources for installing the GKE Connect agent. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- membership_
cr_ strmanifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- membership_
resources Sequence[ResourceManifest Response] - Additional Kubernetes resources that need to be applied to the cluster after Membership creation, and after every update. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- resource_
options ResourceOptions Response - Optional. Options for Kubernetes resource generation.
- connect
Resources List<Property Map> - The Kubernetes resources for installing the GKE Connect agent. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- membership
Cr StringManifest - Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently present in the cluster during Create or Update, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered with another Membership.
- membership
Resources List<Property Map> - Additional Kubernetes resources that need to be applied to the cluster after Membership creation, and after every update. This field is only populated in the Membership returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
- resource
Options Property Map - Optional. Options for Kubernetes resource generation.
MembershipEndpoint, MembershipEndpointArgs
- Appliance
Cluster Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Appliance Cluster - Optional. Specific information for a GDC Edge Appliance cluster.
- Edge
Cluster Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Edge Cluster - Optional. Specific information for a Google Edge cluster.
- Gke
Cluster Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Gke Cluster - Optional. Specific information for a GKE-on-GCP cluster.
- Kubernetes
Resource Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Kubernetes Resource - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- Multi
Cloud Pulumi.Cluster Google Native. GKEHub. V1Alpha2. Inputs. Multi Cloud Cluster - Optional. Specific information for a GKE Multi-Cloud cluster.
- On
Prem Pulumi.Cluster Google Native. GKEHub. V1Alpha2. Inputs. On Prem Cluster - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
- Appliance
Cluster ApplianceCluster - Optional. Specific information for a GDC Edge Appliance cluster.
- Edge
Cluster EdgeCluster - Optional. Specific information for a Google Edge cluster.
- Gke
Cluster GkeCluster - Optional. Specific information for a GKE-on-GCP cluster.
- Kubernetes
Resource KubernetesResource - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- Multi
Cloud MultiCluster Cloud Cluster - Optional. Specific information for a GKE Multi-Cloud cluster.
- On
Prem OnCluster Prem Cluster - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
- appliance
Cluster ApplianceCluster - Optional. Specific information for a GDC Edge Appliance cluster.
- edge
Cluster EdgeCluster - Optional. Specific information for a Google Edge cluster.
- gke
Cluster GkeCluster - Optional. Specific information for a GKE-on-GCP cluster.
- kubernetes
Resource KubernetesResource - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- multi
Cloud MultiCluster Cloud Cluster - Optional. Specific information for a GKE Multi-Cloud cluster.
- on
Prem OnCluster Prem Cluster - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
- appliance
Cluster ApplianceCluster - Optional. Specific information for a GDC Edge Appliance cluster.
- edge
Cluster EdgeCluster - Optional. Specific information for a Google Edge cluster.
- gke
Cluster GkeCluster - Optional. Specific information for a GKE-on-GCP cluster.
- kubernetes
Resource KubernetesResource - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- multi
Cloud MultiCluster Cloud Cluster - Optional. Specific information for a GKE Multi-Cloud cluster.
- on
Prem OnCluster Prem Cluster - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
- appliance_
cluster ApplianceCluster - Optional. Specific information for a GDC Edge Appliance cluster.
- edge_
cluster EdgeCluster - Optional. Specific information for a Google Edge cluster.
- gke_
cluster GkeCluster - Optional. Specific information for a GKE-on-GCP cluster.
- kubernetes_
resource KubernetesResource - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- multi_
cloud_ Multicluster Cloud Cluster - Optional. Specific information for a GKE Multi-Cloud cluster.
- on_
prem_ Oncluster Prem Cluster - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
- appliance
Cluster Property Map - Optional. Specific information for a GDC Edge Appliance cluster.
- edge
Cluster Property Map - Optional. Specific information for a Google Edge cluster.
- gke
Cluster Property Map - Optional. Specific information for a GKE-on-GCP cluster.
- kubernetes
Resource Property Map - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- multi
Cloud Property MapCluster - Optional. Specific information for a GKE Multi-Cloud cluster.
- on
Prem Property MapCluster - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
MembershipEndpointResponse, MembershipEndpointResponseArgs
- Appliance
Cluster Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Appliance Cluster Response - Optional. Specific information for a GDC Edge Appliance cluster.
- Edge
Cluster Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Edge Cluster Response - Optional. Specific information for a Google Edge cluster.
- Gke
Cluster Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Gke Cluster Response - Optional. Specific information for a GKE-on-GCP cluster.
- Kubernetes
Metadata Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Kubernetes Metadata Response - Useful Kubernetes-specific metadata.
- Kubernetes
Resource Pulumi.Google Native. GKEHub. V1Alpha2. Inputs. Kubernetes Resource Response - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- Multi
Cloud Pulumi.Cluster Google Native. GKEHub. V1Alpha2. Inputs. Multi Cloud Cluster Response - Optional. Specific information for a GKE Multi-Cloud cluster.
- On
Prem Pulumi.Cluster Google Native. GKEHub. V1Alpha2. Inputs. On Prem Cluster Response - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
- Appliance
Cluster ApplianceCluster Response - Optional. Specific information for a GDC Edge Appliance cluster.
- Edge
Cluster EdgeCluster Response - Optional. Specific information for a Google Edge cluster.
- Gke
Cluster GkeCluster Response - Optional. Specific information for a GKE-on-GCP cluster.
- Kubernetes
Metadata KubernetesMetadata Response - Useful Kubernetes-specific metadata.
- Kubernetes
Resource KubernetesResource Response - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- Multi
Cloud MultiCluster Cloud Cluster Response - Optional. Specific information for a GKE Multi-Cloud cluster.
- On
Prem OnCluster Prem Cluster Response - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
- appliance
Cluster ApplianceCluster Response - Optional. Specific information for a GDC Edge Appliance cluster.
- edge
Cluster EdgeCluster Response - Optional. Specific information for a Google Edge cluster.
- gke
Cluster GkeCluster Response - Optional. Specific information for a GKE-on-GCP cluster.
- kubernetes
Metadata KubernetesMetadata Response - Useful Kubernetes-specific metadata.
- kubernetes
Resource KubernetesResource Response - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- multi
Cloud MultiCluster Cloud Cluster Response - Optional. Specific information for a GKE Multi-Cloud cluster.
- on
Prem OnCluster Prem Cluster Response - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
- appliance
Cluster ApplianceCluster Response - Optional. Specific information for a GDC Edge Appliance cluster.
- edge
Cluster EdgeCluster Response - Optional. Specific information for a Google Edge cluster.
- gke
Cluster GkeCluster Response - Optional. Specific information for a GKE-on-GCP cluster.
- kubernetes
Metadata KubernetesMetadata Response - Useful Kubernetes-specific metadata.
- kubernetes
Resource KubernetesResource Response - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- multi
Cloud MultiCluster Cloud Cluster Response - Optional. Specific information for a GKE Multi-Cloud cluster.
- on
Prem OnCluster Prem Cluster Response - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
- appliance_
cluster ApplianceCluster Response - Optional. Specific information for a GDC Edge Appliance cluster.
- edge_
cluster EdgeCluster Response - Optional. Specific information for a Google Edge cluster.
- gke_
cluster GkeCluster Response - Optional. Specific information for a GKE-on-GCP cluster.
- kubernetes_
metadata KubernetesMetadata Response - Useful Kubernetes-specific metadata.
- kubernetes_
resource KubernetesResource Response - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- multi_
cloud_ Multicluster Cloud Cluster Response - Optional. Specific information for a GKE Multi-Cloud cluster.
- on_
prem_ Oncluster Prem Cluster Response - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
- appliance
Cluster Property Map - Optional. Specific information for a GDC Edge Appliance cluster.
- edge
Cluster Property Map - Optional. Specific information for a Google Edge cluster.
- gke
Cluster Property Map - Optional. Specific information for a GKE-on-GCP cluster.
- kubernetes
Metadata Property Map - Useful Kubernetes-specific metadata.
- kubernetes
Resource Property Map - Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration of default Hub Features.
- multi
Cloud Property MapCluster - Optional. Specific information for a GKE Multi-Cloud cluster.
- on
Prem Property MapCluster - Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead.
MembershipInfrastructureType, MembershipInfrastructureTypeArgs
- Infrastructure
Type Unspecified - INFRASTRUCTURE_TYPE_UNSPECIFIEDNo type was specified. Some Hub functionality may require a type be specified, and will not support Memberships with this value.
- On
Prem - ON_PREMPrivate infrastructure that is owned or operated by customer. This includes GKE distributions such as GKE-OnPrem and GKE-OnBareMetal.
- Multi
Cloud - MULTI_CLOUDPublic cloud infrastructure.
- Membership
Infrastructure Type Infrastructure Type Unspecified - INFRASTRUCTURE_TYPE_UNSPECIFIEDNo type was specified. Some Hub functionality may require a type be specified, and will not support Memberships with this value.
- Membership
Infrastructure Type On Prem - ON_PREMPrivate infrastructure that is owned or operated by customer. This includes GKE distributions such as GKE-OnPrem and GKE-OnBareMetal.
- Membership
Infrastructure Type Multi Cloud - MULTI_CLOUDPublic cloud infrastructure.
- Infrastructure
Type Unspecified - INFRASTRUCTURE_TYPE_UNSPECIFIEDNo type was specified. Some Hub functionality may require a type be specified, and will not support Memberships with this value.
- On
Prem - ON_PREMPrivate infrastructure that is owned or operated by customer. This includes GKE distributions such as GKE-OnPrem and GKE-OnBareMetal.
- Multi
Cloud - MULTI_CLOUDPublic cloud infrastructure.
- Infrastructure
Type Unspecified - INFRASTRUCTURE_TYPE_UNSPECIFIEDNo type was specified. Some Hub functionality may require a type be specified, and will not support Memberships with this value.
- On
Prem - ON_PREMPrivate infrastructure that is owned or operated by customer. This includes GKE distributions such as GKE-OnPrem and GKE-OnBareMetal.
- Multi
Cloud - MULTI_CLOUDPublic cloud infrastructure.
- INFRASTRUCTURE_TYPE_UNSPECIFIED
- INFRASTRUCTURE_TYPE_UNSPECIFIEDNo type was specified. Some Hub functionality may require a type be specified, and will not support Memberships with this value.
- ON_PREM
- ON_PREMPrivate infrastructure that is owned or operated by customer. This includes GKE distributions such as GKE-OnPrem and GKE-OnBareMetal.
- MULTI_CLOUD
- MULTI_CLOUDPublic cloud infrastructure.
- "INFRASTRUCTURE_TYPE_UNSPECIFIED"
- INFRASTRUCTURE_TYPE_UNSPECIFIEDNo type was specified. Some Hub functionality may require a type be specified, and will not support Memberships with this value.
- "ON_PREM"
- ON_PREMPrivate infrastructure that is owned or operated by customer. This includes GKE distributions such as GKE-OnPrem and GKE-OnBareMetal.
- "MULTI_CLOUD"
- MULTI_CLOUDPublic cloud infrastructure.
MembershipStateResponse, MembershipStateResponseArgs
- Code string
- The current state of the Membership resource.
- Code string
- The current state of the Membership resource.
- code String
- The current state of the Membership resource.
- code string
- The current state of the Membership resource.
- code str
- The current state of the Membership resource.
- code String
- The current state of the Membership resource.
MonitoringConfig, MonitoringConfigArgs
- Cluster string
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- Cluster
Hash string - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- Kubernetes
Metrics stringPrefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- Location string
- Optional. Location used to report Metrics
- Project string
- Optional. Project used to report Metrics
- Cluster string
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- Cluster
Hash string - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- Kubernetes
Metrics stringPrefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- Location string
- Optional. Location used to report Metrics
- Project string
- Optional. Project used to report Metrics
- cluster String
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- cluster
Hash String - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- kubernetes
Metrics StringPrefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- location String
- Optional. Location used to report Metrics
- project String
- Optional. Project used to report Metrics
- cluster string
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- cluster
Hash string - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- kubernetes
Metrics stringPrefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- location string
- Optional. Location used to report Metrics
- project string
- Optional. Project used to report Metrics
- cluster str
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- cluster_
hash str - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- kubernetes_
metrics_ strprefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- location str
- Optional. Location used to report Metrics
- project str
- Optional. Project used to report Metrics
- cluster String
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- cluster
Hash String - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- kubernetes
Metrics StringPrefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- location String
- Optional. Location used to report Metrics
- project String
- Optional. Project used to report Metrics
MonitoringConfigResponse, MonitoringConfigResponseArgs
- Cluster string
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- Cluster
Hash string - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- Kubernetes
Metrics stringPrefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- Location string
- Optional. Location used to report Metrics
- Project string
- Optional. Project used to report Metrics
- Cluster string
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- Cluster
Hash string - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- Kubernetes
Metrics stringPrefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- Location string
- Optional. Location used to report Metrics
- Project string
- Optional. Project used to report Metrics
- cluster String
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- cluster
Hash String - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- kubernetes
Metrics StringPrefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- location String
- Optional. Location used to report Metrics
- project String
- Optional. Project used to report Metrics
- cluster string
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- cluster
Hash string - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- kubernetes
Metrics stringPrefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- location string
- Optional. Location used to report Metrics
- project string
- Optional. Project used to report Metrics
- cluster str
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- cluster_
hash str - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- kubernetes_
metrics_ strprefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- location str
- Optional. Location used to report Metrics
- project str
- Optional. Project used to report Metrics
- cluster String
- Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".
- cluster
Hash String - Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID.
- kubernetes
Metrics StringPrefix - Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
- location String
- Optional. Location used to report Metrics
- project String
- Optional. Project used to report Metrics
MultiCloudCluster, MultiCloudClusterArgs
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
- resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
- resource_
link str - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
MultiCloudClusterResponse, MultiCloudClusterResponseArgs
- Cluster
Missing bool - If cluster_missing is set then it denotes that API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster no longer exists.
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
- Cluster
Missing bool - If cluster_missing is set then it denotes that API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster no longer exists.
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
- cluster
Missing Boolean - If cluster_missing is set then it denotes that API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster no longer exists.
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
- cluster
Missing boolean - If cluster_missing is set then it denotes that API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster no longer exists.
- resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
- cluster_
missing bool - If cluster_missing is set then it denotes that API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster no longer exists.
- resource_
link str - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
- cluster
Missing Boolean - If cluster_missing is set then it denotes that API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster no longer exists.
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
OnPremCluster, OnPremClusterArgs
- Admin
Cluster bool - Immutable. Whether the cluster is an admin cluster.
- Cluster
Type Pulumi.Google Native. GKEHub. V1Alpha2. On Prem Cluster Cluster Type - Immutable. The on prem cluster's type.
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
- Admin
Cluster bool - Immutable. Whether the cluster is an admin cluster.
- Cluster
Type OnPrem Cluster Cluster Type - Immutable. The on prem cluster's type.
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
- admin
Cluster Boolean - Immutable. Whether the cluster is an admin cluster.
- cluster
Type OnPrem Cluster Cluster Type - Immutable. The on prem cluster's type.
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
- admin
Cluster boolean - Immutable. Whether the cluster is an admin cluster.
- cluster
Type OnPrem Cluster Cluster Type - Immutable. The on prem cluster's type.
- resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
- admin_
cluster bool - Immutable. Whether the cluster is an admin cluster.
- cluster_
type OnPrem Cluster Cluster Type - Immutable. The on prem cluster's type.
- resource_
link str - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
- admin
Cluster Boolean - Immutable. Whether the cluster is an admin cluster.
- cluster
Type "CLUSTERTYPE_UNSPECIFIED" | "BOOTSTRAP" | "HYBRID" | "STANDALONE" | "USER" - Immutable. The on prem cluster's type.
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
OnPremClusterClusterType, OnPremClusterClusterTypeArgs
- Clustertype
Unspecified - CLUSTERTYPE_UNSPECIFIEDThe ClusterType is not set.
- Bootstrap
- BOOTSTRAPThe ClusterType is bootstrap cluster.
- Hybrid
- HYBRIDThe ClusterType is baremetal hybrid cluster.
- Standalone
- STANDALONEThe ClusterType is baremetal standalone cluster.
- User
- USERThe ClusterType is user cluster.
- On
Prem Cluster Cluster Type Clustertype Unspecified - CLUSTERTYPE_UNSPECIFIEDThe ClusterType is not set.
- On
Prem Cluster Cluster Type Bootstrap - BOOTSTRAPThe ClusterType is bootstrap cluster.
- On
Prem Cluster Cluster Type Hybrid - HYBRIDThe ClusterType is baremetal hybrid cluster.
- On
Prem Cluster Cluster Type Standalone - STANDALONEThe ClusterType is baremetal standalone cluster.
- On
Prem Cluster Cluster Type User - USERThe ClusterType is user cluster.
- Clustertype
Unspecified - CLUSTERTYPE_UNSPECIFIEDThe ClusterType is not set.
- Bootstrap
- BOOTSTRAPThe ClusterType is bootstrap cluster.
- Hybrid
- HYBRIDThe ClusterType is baremetal hybrid cluster.
- Standalone
- STANDALONEThe ClusterType is baremetal standalone cluster.
- User
- USERThe ClusterType is user cluster.
- Clustertype
Unspecified - CLUSTERTYPE_UNSPECIFIEDThe ClusterType is not set.
- Bootstrap
- BOOTSTRAPThe ClusterType is bootstrap cluster.
- Hybrid
- HYBRIDThe ClusterType is baremetal hybrid cluster.
- Standalone
- STANDALONEThe ClusterType is baremetal standalone cluster.
- User
- USERThe ClusterType is user cluster.
- CLUSTERTYPE_UNSPECIFIED
- CLUSTERTYPE_UNSPECIFIEDThe ClusterType is not set.
- BOOTSTRAP
- BOOTSTRAPThe ClusterType is bootstrap cluster.
- HYBRID
- HYBRIDThe ClusterType is baremetal hybrid cluster.
- STANDALONE
- STANDALONEThe ClusterType is baremetal standalone cluster.
- USER
- USERThe ClusterType is user cluster.
- "CLUSTERTYPE_UNSPECIFIED"
- CLUSTERTYPE_UNSPECIFIEDThe ClusterType is not set.
- "BOOTSTRAP"
- BOOTSTRAPThe ClusterType is bootstrap cluster.
- "HYBRID"
- HYBRIDThe ClusterType is baremetal hybrid cluster.
- "STANDALONE"
- STANDALONEThe ClusterType is baremetal standalone cluster.
- "USER"
- USERThe ClusterType is user cluster.
OnPremClusterResponse, OnPremClusterResponseArgs
- Admin
Cluster bool - Immutable. Whether the cluster is an admin cluster.
- Cluster
Missing bool - If cluster_missing is set then it denotes that API(gkeonprem.googleapis.com) resource for this GKE On-Prem cluster no longer exists.
- Cluster
Type string - Immutable. The on prem cluster's type.
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
- Admin
Cluster bool - Immutable. Whether the cluster is an admin cluster.
- Cluster
Missing bool - If cluster_missing is set then it denotes that API(gkeonprem.googleapis.com) resource for this GKE On-Prem cluster no longer exists.
- Cluster
Type string - Immutable. The on prem cluster's type.
- Resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
- admin
Cluster Boolean - Immutable. Whether the cluster is an admin cluster.
- cluster
Missing Boolean - If cluster_missing is set then it denotes that API(gkeonprem.googleapis.com) resource for this GKE On-Prem cluster no longer exists.
- cluster
Type String - Immutable. The on prem cluster's type.
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
- admin
Cluster boolean - Immutable. Whether the cluster is an admin cluster.
- cluster
Missing boolean - If cluster_missing is set then it denotes that API(gkeonprem.googleapis.com) resource for this GKE On-Prem cluster no longer exists.
- cluster
Type string - Immutable. The on prem cluster's type.
- resource
Link string - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
- admin_
cluster bool - Immutable. Whether the cluster is an admin cluster.
- cluster_
missing bool - If cluster_missing is set then it denotes that API(gkeonprem.googleapis.com) resource for this GKE On-Prem cluster no longer exists.
- cluster_
type str - Immutable. The on prem cluster's type.
- resource_
link str - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
- admin
Cluster Boolean - Immutable. Whether the cluster is an admin cluster.
- cluster
Missing Boolean - If cluster_missing is set then it denotes that API(gkeonprem.googleapis.com) resource for this GKE On-Prem cluster no longer exists.
- cluster
Type String - Immutable. The on prem cluster's type.
- resource
Link String - Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
ResourceManifestResponse, ResourceManifestResponseArgs
- Cluster
Scoped bool - Whether the resource provided in the manifest is
cluster_scoped
. If unset, the manifest is assumed to be namespace scoped. This field is used for REST mapping when applying the resource in a cluster. - Manifest string
- YAML manifest of the resource.
- Cluster
Scoped bool - Whether the resource provided in the manifest is
cluster_scoped
. If unset, the manifest is assumed to be namespace scoped. This field is used for REST mapping when applying the resource in a cluster. - Manifest string
- YAML manifest of the resource.
- cluster
Scoped Boolean - Whether the resource provided in the manifest is
cluster_scoped
. If unset, the manifest is assumed to be namespace scoped. This field is used for REST mapping when applying the resource in a cluster. - manifest String
- YAML manifest of the resource.
- cluster
Scoped boolean - Whether the resource provided in the manifest is
cluster_scoped
. If unset, the manifest is assumed to be namespace scoped. This field is used for REST mapping when applying the resource in a cluster. - manifest string
- YAML manifest of the resource.
- cluster_
scoped bool - Whether the resource provided in the manifest is
cluster_scoped
. If unset, the manifest is assumed to be namespace scoped. This field is used for REST mapping when applying the resource in a cluster. - manifest str
- YAML manifest of the resource.
- cluster
Scoped Boolean - Whether the resource provided in the manifest is
cluster_scoped
. If unset, the manifest is assumed to be namespace scoped. This field is used for REST mapping when applying the resource in a cluster. - manifest String
- YAML manifest of the resource.
ResourceOptions, ResourceOptionsArgs
- Connect
Version string - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- K8s
Version string - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - V1beta1Crd bool
- Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
- Connect
Version string - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- K8s
Version string - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - V1beta1Crd bool
- Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
- connect
Version String - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- k8s
Version String - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - v1beta1Crd Boolean
- Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
- connect
Version string - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- k8s
Version string - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - v1beta1Crd boolean
- Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
- connect_
version str - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- k8s_
version str - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - v1beta1_
crd bool - Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
- connect
Version String - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- k8s
Version String - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - v1beta1Crd Boolean
- Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
ResourceOptionsResponse, ResourceOptionsResponseArgs
- Connect
Version string - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- K8s
Version string - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - V1beta1Crd bool
- Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
- Connect
Version string - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- K8s
Version string - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - V1beta1Crd bool
- Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
- connect
Version String - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- k8s
Version String - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - v1beta1Crd Boolean
- Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
- connect
Version string - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- k8s
Version string - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - v1beta1Crd boolean
- Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
- connect_
version str - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- k8s_
version str - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - v1beta1_
crd bool - Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
- connect
Version String - Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions will be rejected.
- k8s
Version String - Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources,
apiextensions/v1beta1
orapiextensions/v1
. - v1beta1Crd Boolean
- Optional. Use
apiextensions/v1beta1
instead ofapiextensions/v1
for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions <1.16.
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.