class Google::Apis::ApigeeV1::GoogleCloudApigeeV1Reference

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

Attributes

description[RW]

Optional. A human-readable description of this reference. Corresponds to the JSON property `description` @return [String]

name[RW]

Required. The resource id of this reference. Values must match the regular expression [ws-.]+. Corresponds to the JSON property `name` @return [String]

refers[RW]

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` @return [String]

resource_type[RW]

The type of resource referred to by this reference. Valid values are 'KeyStore' or 'TrustStore'. Corresponds to the JSON property `resourceType` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 5767
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 5772
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