Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1App
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1App
- 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
Instance Attribute Summary collapse
-
#api_products ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiProductRef>
List of API products associated with the app.
-
#app_id ⇒ String
ID of the app.
-
#attributes ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>
List of attributes.
-
#callback_url ⇒ String
Callback URL used by OAuth 2.0 authorization servers to communicate authorization codes back to apps.
-
#company_name ⇒ String
Name of the company that owns the app.
-
#created_at ⇒ Fixnum
Output only.
-
#credentials ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Credential>
Output only.
-
#developer_id ⇒ String
ID of the developer.
-
#key_expires_in ⇒ Fixnum
Duration, in milliseconds, of the consumer key that will be generated for the app.
-
#last_modified_at ⇒ Fixnum
Output only.
-
#name ⇒ String
Name of the app.
-
#scopes ⇒ Array<String>
Scopes to apply to the app.
-
#status ⇒ String
Status of the credential.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1App
constructor
A new instance of GoogleCloudApigeeV1App.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1App
Returns a new instance of GoogleCloudApigeeV1App.
1035 1036 1037 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1035 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_products ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiProductRef>
List of API products associated with the app.
Corresponds to the JSON property apiProducts
968 969 970 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 968 def api_products @api_products end |
#app_id ⇒ String
ID of the app.
Corresponds to the JSON property appId
973 974 975 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 973 def app_id @app_id end |
#attributes ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>
List of attributes.
Corresponds to the JSON property attributes
978 979 980 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 978 def attributes @attributes end |
#callback_url ⇒ String
Callback URL used by OAuth 2.0 authorization servers to communicate
authorization codes back to apps.
Corresponds to the JSON property callbackUrl
984 985 986 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 984 def callback_url @callback_url end |
#company_name ⇒ String
Name of the company that owns the app.
Corresponds to the JSON property companyName
989 990 991 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 989 def company_name @company_name end |
#created_at ⇒ Fixnum
Output only. Unix time when the app was created.
Corresponds to the JSON property createdAt
994 995 996 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 994 def created_at @created_at end |
#credentials ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Credential>
Output only. Set of credentials for the app. Credentials are API key/secret
pairs associated with API products.
Corresponds to the JSON property credentials
1000 1001 1002 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1000 def credentials @credentials end |
#developer_id ⇒ String
ID of the developer.
Corresponds to the JSON property developerId
1005 1006 1007 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1005 def developer_id @developer_id end |
#key_expires_in ⇒ Fixnum
Duration, in milliseconds, of the consumer key that will be generated for the
app. The default value, -1, indicates an infinite validity period. Once set,
the expiration can't be updated. json key: keyExpiresIn
Corresponds to the JSON property keyExpiresIn
1012 1013 1014 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1012 def key_expires_in @key_expires_in end |
#last_modified_at ⇒ Fixnum
Output only. Last modified time as milliseconds since epoch.
Corresponds to the JSON property lastModifiedAt
1017 1018 1019 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1017 def last_modified_at @last_modified_at end |
#name ⇒ String
Name of the app.
Corresponds to the JSON property name
1022 1023 1024 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1022 def name @name end |
#scopes ⇒ Array<String>
Scopes to apply to the app. The specified scope names must already exist on
the API product that you associate with the app.
Corresponds to the JSON property scopes
1028 1029 1030 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1028 def scopes @scopes end |
#status ⇒ String
Status of the credential.
Corresponds to the JSON property status
1033 1034 1035 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1033 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1040 def update!(**args) @api_products = args[:api_products] if args.key?(:api_products) @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) @company_name = args[:company_name] if args.key?(:company_name) @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 |