Class: Google::Apis::AppengineV1::IdentityAwareProxy
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::IdentityAwareProxy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/appengine_v1/classes.rb,
lib/google/apis/appengine_v1/representations.rb,
lib/google/apis/appengine_v1/representations.rb
Overview
Identity-Aware Proxy
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
(also: #enabled?)
Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
-
#oauth2_client_id ⇒ String
OAuth2 client ID to use for the authentication flow.
-
#oauth2_client_secret ⇒ String
OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API.
-
#oauth2_client_secret_sha256 ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IdentityAwareProxy
constructor
A new instance of IdentityAwareProxy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IdentityAwareProxy
Returns a new instance of IdentityAwareProxy.
1313 1314 1315 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1313 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enabled ⇒ Boolean Also known as: enabled?
Whether the serving infrastructure will authenticate and authorize all
incoming requests.If true, the oauth2_client_id and oauth2_client_secret
fields must be non-empty.
Corresponds to the JSON property enabled
1293 1294 1295 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1293 def enabled @enabled end |
#oauth2_client_id ⇒ String
OAuth2 client ID to use for the authentication flow.
Corresponds to the JSON property oauth2ClientId
1299 1300 1301 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1299 def oauth2_client_id @oauth2_client_id end |
#oauth2_client_secret ⇒ String
OAuth2 client secret to use for the authentication flow.For security reasons,
this value cannot be retrieved via the API. Instead, the SHA-256 hash of the
value is returned in the oauth2_client_secret_sha256 field.@InputOnly
Corresponds to the JSON property oauth2ClientSecret
1306 1307 1308 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1306 def oauth2_client_secret @oauth2_client_secret end |
#oauth2_client_secret_sha256 ⇒ String
Output only. Hex-encoded SHA-256 hash of the client secret.@OutputOnly
Corresponds to the JSON property oauth2ClientSecretSha256
1311 1312 1313 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1311 def oauth2_client_secret_sha256 @oauth2_client_secret_sha256 end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1318 1319 1320 1321 1322 1323 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1318 def update!(**args) @enabled = args[:enabled] if args.key?(:enabled) @oauth2_client_id = args[:oauth2_client_id] if args.key?(:oauth2_client_id) @oauth2_client_secret = args[:oauth2_client_secret] if args.key?(:oauth2_client_secret) @oauth2_client_secret_sha256 = args[:oauth2_client_secret_sha256] if args.key?(:oauth2_client_secret_sha256) end |