Class: Google::Apis::ServicemanagementV1::AuthRequirement
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicemanagementV1::AuthRequirement
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/servicemanagement_v1/classes.rb,
lib/google/apis/servicemanagement_v1/representations.rb,
lib/google/apis/servicemanagement_v1/representations.rb 
Overview
User-defined authentication requirements, including support for JSON Web Token (JWT).
Instance Attribute Summary collapse
- 
  
    
      #audiences  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
NOTE: This will be deprecated soon, once AuthProvider.audiences is implemented and accepted in all the runtime components.
 - 
  
    
      #provider_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
id from authentication provider.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AuthRequirement 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AuthRequirement.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ AuthRequirement
Returns a new instance of AuthRequirement.
      293 294 295  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 293 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#audiences ⇒ String
NOTE: This will be deprecated soon, once AuthProvider.audiences is implemented
and accepted in all the runtime components. The list of JWT audiences. that
are allowed to access. A JWT containing any of these audiences will be
accepted. When this setting is absent, only JWTs with audience "https://
Service_name/API_name" will be accepted. For example, if no audiences are in
the setting, LibraryService API will only accept JWTs with the following
audience "https://library-example.googleapis.com/google.example.library.v1.
LibraryService". Example: audiences: bookstore_android.apps.googleusercontent.
com, bookstore_web.apps.googleusercontent.com
Corresponds to the JSON property audiences
      286 287 288  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 286 def audiences @audiences end  | 
  
#provider_id ⇒ String
id from authentication provider. Example: provider_id: bookstore_auth
Corresponds to the JSON property providerId
      291 292 293  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 291 def provider_id @provider_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      298 299 300 301  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 298 def update!(**args) @audiences = args[:audiences] if args.key?(:audiences) @provider_id = args[:provider_id] if args.key?(:provider_id) end  |