Class: Google::Apis::IamV1::SignBlobRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::IamV1::SignBlobRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/iam_v1/classes.rb,
 generated/google/apis/iam_v1/representations.rb,
 generated/google/apis/iam_v1/representations.rb
Overview
The service account sign blob request.
Instance Attribute Summary collapse
- 
  
    
      #bytes_to_sign  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The bytes to sign. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SignBlobRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SignBlobRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SignBlobRequest
Returns a new instance of SignBlobRequest
| 1068 1069 1070 | # File 'generated/google/apis/iam_v1/classes.rb', line 1068 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#bytes_to_sign ⇒ String
The bytes to sign.
Corresponds to the JSON property bytesToSign
NOTE: Values are automatically base64 encoded/decoded in the client library.
| 1066 1067 1068 | # File 'generated/google/apis/iam_v1/classes.rb', line 1066 def bytes_to_sign @bytes_to_sign end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1073 1074 1075 | # File 'generated/google/apis/iam_v1/classes.rb', line 1073 def update!(**args) @bytes_to_sign = args[:bytes_to_sign] if args.key?(:bytes_to_sign) end |