class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentConfig

NEXT ID: 9

Attributes

attributes[RW]

Additional key-value metadata for the deployment. Corresponds to the JSON property `attributes` @return [Hash<String,String>]

base_path[RW]

Base path where the application will be hosted. Defaults to “/”. Corresponds to the JSON property `basePath` @return [String]

location[RW]

Location of the API proxy bundle as a URI. Corresponds to the JSON property `location` @return [String]

name[RW]

Name of the API or shared flow revision to be deployed in the following format: `organizations/`org`/apis/`api`/revisions/`rev“ or `organizations/`org`/ sharedflows/`sharedflow`/revisions/`rev“ Corresponds to the JSON property `name` @return [String]

proxy_uid[RW]

Unique ID of the API proxy revision. Corresponds to the JSON property `proxyUid` @return [String]

service_account[RW]

The service account identity associated with this deployment. If non-empty, will be in the following format: `projects/-/serviceAccounts/`account_email“ Corresponds to the JSON property `serviceAccount` @return [String]

uid[RW]

Unique ID. The ID will only change if the deployment is deleted and recreated. Corresponds to the JSON property `uid` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 2411
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 2416
def update!(**args)
  @attributes = args[:attributes] if args.key?(:attributes)
  @base_path = args[:base_path] if args.key?(:base_path)
  @location = args[:location] if args.key?(:location)
  @name = args[:name] if args.key?(:name)
  @proxy_uid = args[:proxy_uid] if args.key?(:proxy_uid)
  @service_account = args[:service_account] if args.key?(:service_account)
  @uid = args[:uid] if args.key?(:uid)
end