Class: Google::Apis::MigrationcenterV1::ReportConfig
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::ReportConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb
Overview
The groups and associated preference sets on which we can generate reports.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Free-text description.
-
#display_name ⇒ String
User-friendly display name.
-
#group_preferenceset_assignments ⇒ Array<Google::Apis::MigrationcenterV1::ReportConfigGroupPreferenceSetAssignment>
Required.
-
#name ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportConfig
constructor
A new instance of ReportConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportConfig
Returns a new instance of ReportConfig.
3599 3600 3601 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3599 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The timestamp when the resource was created.
Corresponds to the JSON property createTime
3572 3573 3574 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3572 def create_time @create_time end |
#description ⇒ String
Free-text description.
Corresponds to the JSON property description
3577 3578 3579 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3577 def description @description end |
#display_name ⇒ String
User-friendly display name. Maximum length is 63 characters.
Corresponds to the JSON property displayName
3582 3583 3584 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3582 def display_name @display_name end |
#group_preferenceset_assignments ⇒ Array<Google::Apis::MigrationcenterV1::ReportConfigGroupPreferenceSetAssignment>
Required. Collection of combinations of groups and preference sets.
Corresponds to the JSON property groupPreferencesetAssignments
3587 3588 3589 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3587 def group_preferenceset_assignments @group_preferenceset_assignments end |
#name ⇒ String
Output only. Name of resource.
Corresponds to the JSON property name
3592 3593 3594 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3592 def name @name end |
#update_time ⇒ String
Output only. The timestamp when the resource was last updated.
Corresponds to the JSON property updateTime
3597 3598 3599 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3597 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3604 3605 3606 3607 3608 3609 3610 3611 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3604 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @group_preferenceset_assignments = args[:group_preferenceset_assignments] if args.key?(:group_preferenceset_assignments) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end |