Class: Google::Apis::OsconfigV1beta::SoftwareRecipeStepCopyFile
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1beta::SoftwareRecipeStepCopyFile
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1beta/classes.rb,
lib/google/apis/osconfig_v1beta/representations.rb,
lib/google/apis/osconfig_v1beta/representations.rb
Overview
Copies the artifact to the specified path on the instance.
Instance Attribute Summary collapse
-
#artifact_id ⇒ String
Required.
-
#destination ⇒ String
Required.
-
#overwrite ⇒ Boolean
(also: #overwrite?)
Whether to allow this step to overwrite existing files.
-
#permissions ⇒ String
Consists of three octal digits which represent, in order, the permissions of the owner, group, and other users for the file (similarly to the numeric mode used in the linux chmod utility).
Instance Method Summary collapse
-
#initialize(**args) ⇒ SoftwareRecipeStepCopyFile
constructor
A new instance of SoftwareRecipeStepCopyFile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SoftwareRecipeStepCopyFile
Returns a new instance of SoftwareRecipeStepCopyFile.
1967 1968 1969 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 1967 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifact_id ⇒ String
Required. The id of the relevant artifact in the recipe.
Corresponds to the JSON property artifactId
1940 1941 1942 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 1940 def artifact_id @artifact_id end |
#destination ⇒ String
Required. The absolute path on the instance to put the file.
Corresponds to the JSON property destination
1945 1946 1947 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 1945 def destination @destination end |
#overwrite ⇒ Boolean Also known as: overwrite?
Whether to allow this step to overwrite existing files. If this is false and
the file already exists the file is not overwritten and the step is considered
a success. Defaults to false.
Corresponds to the JSON property overwrite
1952 1953 1954 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 1952 def overwrite @overwrite end |
#permissions ⇒ String
Consists of three octal digits which represent, in order, the permissions of
the owner, group, and other users for the file (similarly to the numeric mode
used in the linux chmod utility). Each digit represents a three bit number
with the 4 bit corresponding to the read permissions, the 2 bit corresponds to
the write bit, and the one bit corresponds to the execute permission. Default
behavior is 755. Below are some examples of permissions and their associated
values: read, write, and execute: 7 read and execute: 5 read and write: 6 read
only: 4
Corresponds to the JSON property permissions
1965 1966 1967 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 1965 def @permissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1972 1973 1974 1975 1976 1977 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 1972 def update!(**args) @artifact_id = args[:artifact_id] if args.key?(:artifact_id) @destination = args[:destination] if args.key?(:destination) @overwrite = args[:overwrite] if args.key?(:overwrite) @permissions = args[:permissions] if args.key?(:permissions) end |