Class: Google::Apis::ManagedidentitiesV1::ExtendSchemaRequest
- Inherits:
-
Object
- Object
- Google::Apis::ManagedidentitiesV1::ExtendSchemaRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/managedidentities_v1/classes.rb,
lib/google/apis/managedidentities_v1/representations.rb,
lib/google/apis/managedidentities_v1/representations.rb
Overview
ExtendSchemaRequest is the request message for ExtendSchema method.
Instance Attribute Summary collapse
-
#description ⇒ String
Required.
-
#file_contents ⇒ String
File uploaded as a byte stream input.
-
#gcs_path ⇒ String
File stored in Cloud Storage bucket and represented in the form projects/
project_id/buckets/bucket_name/objects/object_nameFile should be in the same project as the domain.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExtendSchemaRequest
constructor
A new instance of ExtendSchemaRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExtendSchemaRequest
Returns a new instance of ExtendSchemaRequest.
573 574 575 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 573 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Required. Description for Schema Change.
Corresponds to the JSON property description
558 559 560 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 558 def description @description end |
#file_contents ⇒ String
File uploaded as a byte stream input.
Corresponds to the JSON property fileContents
NOTE: Values are automatically base64 encoded/decoded in the client library.
564 565 566 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 564 def file_contents @file_contents end |
#gcs_path ⇒ String
File stored in Cloud Storage bucket and represented in the form projects/
project_id/buckets/bucket_name/objects/object_name File should be in the
same project as the domain.
Corresponds to the JSON property gcsPath
571 572 573 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 571 def gcs_path @gcs_path end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
578 579 580 581 582 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 578 def update!(**args) @description = args[:description] if args.key?(:description) @file_contents = args[:file_contents] if args.key?(:file_contents) @gcs_path = args[:gcs_path] if args.key?(:gcs_path) end |