Class: Google::Apis::ManagedidentitiesV1beta1::ExtendSchemaRequest
- Inherits:
-
Object
- Object
- Google::Apis::ManagedidentitiesV1beta1::ExtendSchemaRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/managedidentities_v1beta1/classes.rb,
lib/google/apis/managedidentities_v1beta1/representations.rb,
lib/google/apis/managedidentities_v1beta1/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.
741 742 743 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 741 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Required. Description for Schema Change.
Corresponds to the JSON property description
726 727 728 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 726 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.
732 733 734 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 732 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
739 740 741 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 739 def gcs_path @gcs_path end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
746 747 748 749 750 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 746 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 |