Class: Google::Apis::RunV1::DomainMapping

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

Overview

Resource to hold the state and status of a user's domain mapping.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DomainMapping

Returns a new instance of DomainMapping



898
899
900
# File 'generated/google/apis/run_v1/classes.rb', line 898

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

Instance Attribute Details

#api_versionString

The API version for this call such as "domains.cloudrun.com/v1". Corresponds to the JSON property apiVersion

Returns:

  • (String)


875
876
877
# File 'generated/google/apis/run_v1/classes.rb', line 875

def api_version
  @api_version
end

#kindString

The kind of resource, in this case "DomainMapping". Corresponds to the JSON property kind

Returns:

  • (String)


880
881
882
# File 'generated/google/apis/run_v1/classes.rb', line 880

def kind
  @kind
end

#metadataGoogle::Apis::RunV1::ObjectMeta

k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. Corresponds to the JSON property metadata



886
887
888
# File 'generated/google/apis/run_v1/classes.rb', line 886

def 
  @metadata
end

#specGoogle::Apis::RunV1::DomainMappingSpec

The desired state of the Domain Mapping. Corresponds to the JSON property spec



891
892
893
# File 'generated/google/apis/run_v1/classes.rb', line 891

def spec
  @spec
end

#statusGoogle::Apis::RunV1::DomainMappingStatus

The current state of the Domain Mapping. Corresponds to the JSON property status



896
897
898
# File 'generated/google/apis/run_v1/classes.rb', line 896

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



903
904
905
906
907
908
909
# File 'generated/google/apis/run_v1/classes.rb', line 903

def update!(**args)
  @api_version = args[:api_version] if args.key?(:api_version)
  @kind = args[:kind] if args.key?(:kind)
  @metadata = args[:metadata] if args.key?(:metadata)
  @spec = args[:spec] if args.key?(:spec)
  @status = args[:status] if args.key?(:status)
end