Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Reference

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

Overview

A Reference configuration. References must refer to a keystore that also exists in the parent environment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1Reference

Returns a new instance of GoogleCloudApigeeV1Reference.



8516
8517
8518
# File 'lib/google/apis/apigee_v1/classes.rb', line 8516

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

Instance Attribute Details

#descriptionString

Optional. A human-readable description of this reference. Corresponds to the JSON property description

Returns:

  • (String)


8495
8496
8497
# File 'lib/google/apis/apigee_v1/classes.rb', line 8495

def description
  @description
end

#nameString

Required. The resource id of this reference. Values must match the regular expression [\w\s-.]+. Corresponds to the JSON property name

Returns:

  • (String)


8501
8502
8503
# File 'lib/google/apis/apigee_v1/classes.rb', line 8501

def name
  @name
end

#refersString

Required. The id of the resource to which this reference refers. Must be the id of a resource that exists in the parent environment and is of the given resource_type. Corresponds to the JSON property refers

Returns:

  • (String)


8508
8509
8510
# File 'lib/google/apis/apigee_v1/classes.rb', line 8508

def refers
  @refers
end

#resource_typeString

The type of resource referred to by this reference. Valid values are 'KeyStore' or 'TrustStore'. Corresponds to the JSON property resourceType

Returns:

  • (String)


8514
8515
8516
# File 'lib/google/apis/apigee_v1/classes.rb', line 8514

def resource_type
  @resource_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8521
8522
8523
8524
8525
8526
# File 'lib/google/apis/apigee_v1/classes.rb', line 8521

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