class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeveloperApp
Attributes
List of API products associated with the developer app. Corresponds to the JSON property `apiProducts` @return [Array<String>]
Developer app family. Corresponds to the JSON property `appFamily` @return [String]
ID of the developer app. Corresponds to the JSON property `appId` @return [String]
List of attributes for the developer app. Corresponds to the JSON property `attributes` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
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]
Output only. Time the developer app was created in milliseconds since epoch. Corresponds to the JSON property `createdAt` @return [Fixnum]
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>]
ID of the developer. Corresponds to the JSON property `developerId` @return [String]
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]
Output only. Time the developer app was modified in milliseconds since epoch. Corresponds to the JSON property `lastModifiedAt` @return [Fixnum]
Name of the developer app. Corresponds to the JSON property `name` @return [String]
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 of the credential. Valid values include `approved` or `revoked`. Corresponds to the JSON property `status` @return [String]
Public Class Methods
# File lib/google/apis/apigee_v1/classes.rb, line 2604 def initialize(**args) update!(**args) end
Public Instance Methods
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