Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Reference
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1Reference
 
 
- 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
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #refers  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #resource_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of resource referred to by this reference.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1Reference 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1Reference.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1Reference
Returns a new instance of GoogleCloudApigeeV1Reference.
      8336 8337 8338  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8336 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#description ⇒ String
Optional. A human-readable description of this reference.
Corresponds to the JSON property description
      8315 8316 8317  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8315 def description @description end  | 
  
#name ⇒ String
Required. The resource id of this reference. Values must match the regular
expression [\w\s-.]+.
Corresponds to the JSON property name
      8321 8322 8323  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8321 def name @name end  | 
  
#refers ⇒ String
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
      8328 8329 8330  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8328 def refers @refers end  | 
  
#resource_type ⇒ String
The type of resource referred to by this reference. Valid values are 'KeyStore'
or 'TrustStore'.
Corresponds to the JSON property resourceType
      8334 8335 8336  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8334 def resource_type @resource_type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8341 8342 8343 8344 8345 8346  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8341 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  |