class Google::Apis::ServicemanagementV1::ConfigFile

Generic specification of a source configuration file

Attributes

file_contents[RW]

The bytes that constitute the file. Corresponds to the JSON property `fileContents` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]

file_path[RW]

The file name of the configuration file (full or relative path). Corresponds to the JSON property `filePath` @return [String]

file_type[RW]

The type of configuration file this represents. Corresponds to the JSON property `fileType` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/servicemanagement_v1/classes.rb, line 729
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/servicemanagement_v1/classes.rb, line 734
def update!(**args)
  @file_contents = args[:file_contents] if args.key?(:file_contents)
  @file_path = args[:file_path] if args.key?(:file_path)
  @file_type = args[:file_type] if args.key?(:file_type)
end