class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeveloperApp

Attributes

api_products[RW]

List of API products associated with the developer app. Corresponds to the JSON property `apiProducts` @return [Array<String>]

app_family[RW]

Developer app family. Corresponds to the JSON property `appFamily` @return [String]

app_id[RW]

ID of the developer app. Corresponds to the JSON property `appId` @return [String]

attributes[RW]

List of attributes for the developer app. Corresponds to the JSON property `attributes` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]

callback_url[RW]

Callback URL used by OAuth 2.0 authorization servers to communicate authorization codes back to developer apps. Corresponds to the JSON property `callbackUrl` @return [String]

created_at[RW]

Output only. Time the developer app was created in milliseconds since epoch. Corresponds to the JSON property `createdAt` @return [Fixnum]

credentials[RW]

Output only. Set of credentials for the developer app consisting of the consumer key/secret pairs associated with the API products. Corresponds to the JSON property `credentials` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Credential>]

developer_id[RW]

ID of the developer. Corresponds to the JSON property `developerId` @return [String]

key_expires_in[RW]

Expiration time, in milliseconds, for the consumer key that is generated for the developer app. If not set or left to the default value of `-1`, the API key never expires. The expiration time can't be updated after it is set. Corresponds to the JSON property `keyExpiresIn` @return [Fixnum]

last_modified_at[RW]

Output only. Time the developer app was modified in milliseconds since epoch. Corresponds to the JSON property `lastModifiedAt` @return [Fixnum]

name[RW]

Name of the developer app. Corresponds to the JSON property `name` @return [String]

scopes[RW]

Scopes to apply to the developer app. The specified scopes must already exist for the API product that you associate with the developer app. Corresponds to the JSON property `scopes` @return [Array<String>]

status[RW]

Status of the credential. Valid values include `approved` or `revoked`. Corresponds to the JSON property `status` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 2604
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 2609
def update!(**args)
  @api_products = args[:api_products] if args.key?(:api_products)
  @app_family = args[:app_family] if args.key?(:app_family)
  @app_id = args[:app_id] if args.key?(:app_id)
  @attributes = args[:attributes] if args.key?(:attributes)
  @callback_url = args[:callback_url] if args.key?(:callback_url)
  @created_at = args[:created_at] if args.key?(:created_at)
  @credentials = args[:credentials] if args.key?(:credentials)
  @developer_id = args[:developer_id] if args.key?(:developer_id)
  @key_expires_in = args[:key_expires_in] if args.key?(:key_expires_in)
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
  @name = args[:name] if args.key?(:name)
  @scopes = args[:scopes] if args.key?(:scopes)
  @status = args[:status] if args.key?(:status)
end