Class: Google::Apis::GkebackupV1::NamespacedName

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkebackup_v1/classes.rb,
lib/google/apis/gkebackup_v1/representations.rb,
lib/google/apis/gkebackup_v1/representations.rb

Overview

A reference to a namespaced resource in Kubernetes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NamespacedName

Returns a new instance of NamespacedName.



2358
2359
2360
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 2358

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

Optional. The name of the Kubernetes resource. Corresponds to the JSON property name

Returns:

  • (String)


2351
2352
2353
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 2351

def name
  @name
end

#namespaceString

Optional. The Namespace of the Kubernetes resource. Corresponds to the JSON property namespace

Returns:

  • (String)


2356
2357
2358
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 2356

def namespace
  @namespace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2363
2364
2365
2366
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 2363

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @namespace = args[:namespace] if args.key?(:namespace)
end