Class: Google::Apis::GkehubV1::MembershipEndpoint
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1::MembershipEndpoint
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1/classes.rb,
lib/google/apis/gkehub_v1/representations.rb,
lib/google/apis/gkehub_v1/representations.rb
Overview
MembershipEndpoint contains information needed to contact a Kubernetes API, endpoint and any additional Kubernetes metadata.
Instance Attribute Summary collapse
-
#edge_cluster ⇒ Google::Apis::GkehubV1::EdgeCluster
EdgeCluster contains information specific to Google Edge Clusters.
-
#gke_cluster ⇒ Google::Apis::GkehubV1::GkeCluster
GkeCluster contains information specific to GKE clusters.
-
#kubernetes_metadata ⇒ Google::Apis::GkehubV1::KubernetesMetadata
KubernetesMetadata provides informational metadata for Memberships representing Kubernetes clusters.
-
#kubernetes_resource ⇒ Google::Apis::GkehubV1::KubernetesResource
KubernetesResource contains the YAML manifests and configuration for Membership Kubernetes resources in the cluster.
-
#multi_cloud_cluster ⇒ Google::Apis::GkehubV1::MultiCloudCluster
MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
-
#on_prem_cluster ⇒ Google::Apis::GkehubV1::OnPremCluster
OnPremCluster contains information specific to GKE On-Prem clusters.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MembershipEndpoint
constructor
A new instance of MembershipEndpoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MembershipEndpoint
Returns a new instance of MembershipEndpoint.
2051 2052 2053 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2051 def initialize(**args) update!(**args) end |
Instance Attribute Details
#edge_cluster ⇒ Google::Apis::GkehubV1::EdgeCluster
EdgeCluster contains information specific to Google Edge Clusters.
Corresponds to the JSON property edgeCluster
2021 2022 2023 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2021 def edge_cluster @edge_cluster end |
#gke_cluster ⇒ Google::Apis::GkehubV1::GkeCluster
GkeCluster contains information specific to GKE clusters.
Corresponds to the JSON property gkeCluster
2026 2027 2028 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2026 def gke_cluster @gke_cluster end |
#kubernetes_metadata ⇒ Google::Apis::GkehubV1::KubernetesMetadata
KubernetesMetadata provides informational metadata for Memberships
representing Kubernetes clusters.
Corresponds to the JSON property kubernetesMetadata
2032 2033 2034 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2032 def @kubernetes_metadata end |
#kubernetes_resource ⇒ Google::Apis::GkehubV1::KubernetesResource
KubernetesResource contains the YAML manifests and configuration for
Membership Kubernetes resources in the cluster. After CreateMembership or
UpdateMembership, these resources should be re-applied in the cluster.
Corresponds to the JSON property kubernetesResource
2039 2040 2041 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2039 def kubernetes_resource @kubernetes_resource end |
#multi_cloud_cluster ⇒ Google::Apis::GkehubV1::MultiCloudCluster
MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
Corresponds to the JSON property multiCloudCluster
2044 2045 2046 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2044 def multi_cloud_cluster @multi_cloud_cluster end |
#on_prem_cluster ⇒ Google::Apis::GkehubV1::OnPremCluster
OnPremCluster contains information specific to GKE On-Prem clusters.
Corresponds to the JSON property onPremCluster
2049 2050 2051 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2049 def on_prem_cluster @on_prem_cluster end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2056 2057 2058 2059 2060 2061 2062 2063 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2056 def update!(**args) @edge_cluster = args[:edge_cluster] if args.key?(:edge_cluster) @gke_cluster = args[:gke_cluster] if args.key?(:gke_cluster) @kubernetes_metadata = args[:kubernetes_metadata] if args.key?(:kubernetes_metadata) @kubernetes_resource = args[:kubernetes_resource] if args.key?(:kubernetes_resource) @multi_cloud_cluster = args[:multi_cloud_cluster] if args.key?(:multi_cloud_cluster) @on_prem_cluster = args[:on_prem_cluster] if args.key?(:on_prem_cluster) end |