Class: Google::Apis::GkebackupV1::NamespacedName
- Inherits:
-
Object
- Object
- Google::Apis::GkebackupV1::NamespacedName
- 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
-
#name ⇒ String
Optional.
-
#namespace ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NamespacedName
constructor
A new instance of NamespacedName.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NamespacedName
Returns a new instance of NamespacedName.
1447 1448 1449 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1447 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Optional. The name of the Kubernetes resource.
Corresponds to the JSON property name
1440 1441 1442 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1440 def name @name end |
#namespace ⇒ String
Optional. The Namespace of the Kubernetes resource.
Corresponds to the JSON property namespace
1445 1446 1447 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1445 def namespace @namespace end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1452 1453 1454 1455 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1452 def update!(**args) @name = args[:name] if args.key?(:name) @namespace = args[:namespace] if args.key?(:namespace) end |