Class: Google::Apis::MigrationcenterV1alpha1::AssetsExportJob
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::AssetsExportJob
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
Assets export job message.
Instance Attribute Summary collapse
-
#condition ⇒ Google::Apis::MigrationcenterV1alpha1::AssetsExportJobExportCondition
Conditions for selecting assets to export.
-
#create_time ⇒ String
Output only.
-
#inventory ⇒ Google::Apis::MigrationcenterV1alpha1::AssetsExportJobInventory
Configuration for asset inventory details exports.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Output only.
-
#network_dependencies ⇒ Google::Apis::MigrationcenterV1alpha1::AssetsExportJobNetworkDependencies
Configuration for network dependencies exports.
-
#performance_data ⇒ Google::Apis::MigrationcenterV1alpha1::AssetsExportJobPerformanceData
Configuration for performance data exports.
-
#recent_executions ⇒ Array<Google::Apis::MigrationcenterV1alpha1::AssetsExportJobExecution>
Output only.
-
#show_hidden ⇒ Boolean
(also: #show_hidden?)
Optional.
-
#signed_uri_destination ⇒ Google::Apis::MigrationcenterV1alpha1::SignedUriDestination
Signed URI destination configuration.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AssetsExportJob
constructor
A new instance of AssetsExportJob.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AssetsExportJob
Returns a new instance of AssetsExportJob.
673 674 675 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 673 def initialize(**args) update!(**args) end |
Instance Attribute Details
#condition ⇒ Google::Apis::MigrationcenterV1alpha1::AssetsExportJobExportCondition
Conditions for selecting assets to export.
Corresponds to the JSON property condition
613 614 615 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 613 def condition @condition end |
#create_time ⇒ String
Output only. Resource creation time.
Corresponds to the JSON property createTime
618 619 620 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 618 def create_time @create_time end |
#inventory ⇒ Google::Apis::MigrationcenterV1alpha1::AssetsExportJobInventory
Configuration for asset inventory details exports.
Corresponds to the JSON property inventory
623 624 625 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 623 def inventory @inventory end |
#labels ⇒ Hash<String,String>
Optional. Labels as key value pairs. Labels must meet the following
constraints: * Keys and values can contain only lowercase letters, numeric
characters, underscores, and dashes. * All characters must use UTF-8 encoding,
and international characters are allowed. * Keys must start with a lowercase
letter or international character. * Each resource is limited to a maximum of
64 labels. Both keys and values are additionally constrained to be <= 128
bytes.
Corresponds to the JSON property labels
634 635 636 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 634 def labels @labels end |
#name ⇒ String
Output only. Identifier. Resource name.
Corresponds to the JSON property name
639 640 641 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 639 def name @name end |
#network_dependencies ⇒ Google::Apis::MigrationcenterV1alpha1::AssetsExportJobNetworkDependencies
Configuration for network dependencies exports.
Corresponds to the JSON property networkDependencies
644 645 646 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 644 def network_dependencies @network_dependencies end |
#performance_data ⇒ Google::Apis::MigrationcenterV1alpha1::AssetsExportJobPerformanceData
Configuration for performance data exports.
Corresponds to the JSON property performanceData
649 650 651 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 649 def performance_data @performance_data end |
#recent_executions ⇒ Array<Google::Apis::MigrationcenterV1alpha1::AssetsExportJobExecution>
Output only. Recent non expired executions of the job.
Corresponds to the JSON property recentExecutions
654 655 656 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 654 def recent_executions @recent_executions end |
#show_hidden ⇒ Boolean Also known as:
Optional. When this value is set to 'true' the response will include all
assets, including those that are hidden.
Corresponds to the JSON property showHidden
660 661 662 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 660 def show_hidden @show_hidden end |
#signed_uri_destination ⇒ Google::Apis::MigrationcenterV1alpha1::SignedUriDestination
Signed URI destination configuration.
Corresponds to the JSON property signedUriDestination
666 667 668 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 666 def signed_uri_destination @signed_uri_destination end |
#update_time ⇒ String
Output only. Resource update time.
Corresponds to the JSON property updateTime
671 672 673 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 671 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
678 679 680 681 682 683 684 685 686 687 688 689 690 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 678 def update!(**args) @condition = args[:condition] if args.key?(:condition) @create_time = args[:create_time] if args.key?(:create_time) @inventory = args[:inventory] if args.key?(:inventory) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @network_dependencies = args[:network_dependencies] if args.key?(:network_dependencies) @performance_data = args[:performance_data] if args.key?(:performance_data) @recent_executions = args[:recent_executions] if args.key?(:recent_executions) @show_hidden = args[:show_hidden] if args.key?(:show_hidden) @signed_uri_destination = args[:signed_uri_destination] if args.key?(:signed_uri_destination) @update_time = args[:update_time] if args.key?(:update_time) end |