google-apis-vmwareengine_v1 0.7.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,6 +22,94 @@ module Google
22
22
  module Apis
23
23
  module VmwareengineV1
24
24
 
25
+ # Announcement for the resources of Vmware Engine.
26
+ class Announcement
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Optional. Activity type of the announcement There can be only one active
30
+ # announcement for a given activity type and target resource.
31
+ # Corresponds to the JSON property `activityType`
32
+ # @return [String]
33
+ attr_accessor :activity_type
34
+
35
+ # A Cluster resource name.
36
+ # Corresponds to the JSON property `cluster`
37
+ # @return [String]
38
+ attr_accessor :cluster
39
+
40
+ # Required. Code of the announcement. Indicates the presence of a VMware Engine
41
+ # related announcement and corresponds to a related message in the `description`
42
+ # field.
43
+ # Corresponds to the JSON property `code`
44
+ # @return [String]
45
+ attr_accessor :code
46
+
47
+ # Output only. Creation time of this resource. It also serves as start time of
48
+ # notification.
49
+ # Corresponds to the JSON property `createTime`
50
+ # @return [String]
51
+ attr_accessor :create_time
52
+
53
+ # Output only. Description of the announcement.
54
+ # Corresponds to the JSON property `description`
55
+ # @return [String]
56
+ attr_accessor :description
57
+
58
+ # Output only. Additional structured details about this announcement.
59
+ # Corresponds to the JSON property `metadata`
60
+ # @return [Hash<String,String>]
61
+ attr_accessor :metadata
62
+
63
+ # Output only. The resource name of the announcement. Resource names are
64
+ # schemeless URIs that follow the conventions in https://cloud.google.com/apis/
65
+ # design/resource_names. For example: `projects/my-project/locations/us-west1-a/
66
+ # announcements/my-announcement-id`
67
+ # Corresponds to the JSON property `name`
68
+ # @return [String]
69
+ attr_accessor :name
70
+
71
+ # A Private Cloud resource name.
72
+ # Corresponds to the JSON property `privateCloud`
73
+ # @return [String]
74
+ attr_accessor :private_cloud
75
+
76
+ # Output only. State of the resource. New values may be added to this enum when
77
+ # appropriate.
78
+ # Corresponds to the JSON property `state`
79
+ # @return [String]
80
+ attr_accessor :state
81
+
82
+ # Output only. Target Resource Type defines the type of the target for the
83
+ # announcement
84
+ # Corresponds to the JSON property `targetResourceType`
85
+ # @return [String]
86
+ attr_accessor :target_resource_type
87
+
88
+ # Output only. Last update time of this resource.
89
+ # Corresponds to the JSON property `updateTime`
90
+ # @return [String]
91
+ attr_accessor :update_time
92
+
93
+ def initialize(**args)
94
+ update!(**args)
95
+ end
96
+
97
+ # Update properties of this object
98
+ def update!(**args)
99
+ @activity_type = args[:activity_type] if args.key?(:activity_type)
100
+ @cluster = args[:cluster] if args.key?(:cluster)
101
+ @code = args[:code] if args.key?(:code)
102
+ @create_time = args[:create_time] if args.key?(:create_time)
103
+ @description = args[:description] if args.key?(:description)
104
+ @metadata = args[:metadata] if args.key?(:metadata)
105
+ @name = args[:name] if args.key?(:name)
106
+ @private_cloud = args[:private_cloud] if args.key?(:private_cloud)
107
+ @state = args[:state] if args.key?(:state)
108
+ @target_resource_type = args[:target_resource_type] if args.key?(:target_resource_type)
109
+ @update_time = args[:update_time] if args.key?(:update_time)
110
+ end
111
+ end
112
+
25
113
  # Specifies the audit configuration for a service. The configuration determines
26
114
  # which permission types are logged, and what identities, if any, are exempted
27
115
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -325,10 +413,10 @@ module Google
325
413
  attr_accessor :management
326
414
  alias_method :management?, :management
327
415
 
328
- # Output only. The resource name of this cluster. Resource names are schemeless
329
- # URIs that follow the conventions in https://cloud.google.com/apis/design/
330
- # resource_names. For example: `projects/my-project/locations/us-central1-a/
331
- # privateClouds/my-cloud/clusters/my-cluster`
416
+ # Output only. Identifier. The resource name of this cluster. Resource names are
417
+ # schemeless URIs that follow the conventions in https://cloud.google.com/apis/
418
+ # design/resource_names. For example: `projects/my-project/locations/us-central1-
419
+ # a/privateClouds/my-cloud/clusters/my-cluster`
332
420
  # Corresponds to the JSON property `name`
333
421
  # @return [String]
334
422
  attr_accessor :name
@@ -377,6 +465,45 @@ module Google
377
465
  end
378
466
  end
379
467
 
468
+ # Constraints to be applied while editing a schedule. These constraints ensure
469
+ # that `Upgrade` specific requirements are met.
470
+ class Constraints
471
+ include Google::Apis::Core::Hashable
472
+
473
+ # Output only. Minimum number of hours must be allotted for the upgrade
474
+ # activities for each selected day. This is a minimum; the upgrade schedule can
475
+ # allot more hours for the given day.
476
+ # Corresponds to the JSON property `minHoursDay`
477
+ # @return [Fixnum]
478
+ attr_accessor :min_hours_day
479
+
480
+ # Output only. The minimum number of weekly hours must be allotted for the
481
+ # upgrade activities. This is just a minimum; the schedule can assign more
482
+ # weekly hours.
483
+ # Corresponds to the JSON property `minHoursWeek`
484
+ # @return [Fixnum]
485
+ attr_accessor :min_hours_week
486
+
487
+ # Represents a time interval, encoded as a Timestamp start (inclusive) and a
488
+ # Timestamp end (exclusive). The start must be less than or equal to the end.
489
+ # When the start equals the end, the interval is empty (matches no time). When
490
+ # both start and end are unspecified, the interval matches any time.
491
+ # Corresponds to the JSON property `rescheduleDateRange`
492
+ # @return [Google::Apis::VmwareengineV1::Interval]
493
+ attr_accessor :reschedule_date_range
494
+
495
+ def initialize(**args)
496
+ update!(**args)
497
+ end
498
+
499
+ # Update properties of this object
500
+ def update!(**args)
501
+ @min_hours_day = args[:min_hours_day] if args.key?(:min_hours_day)
502
+ @min_hours_week = args[:min_hours_week] if args.key?(:min_hours_week)
503
+ @reschedule_date_range = args[:reschedule_date_range] if args.key?(:reschedule_date_range)
504
+ end
505
+ end
506
+
380
507
  # Credentials for a private cloud.
381
508
  class Credentials
382
509
  include Google::Apis::Core::Hashable
@@ -449,10 +576,10 @@ module Google
449
576
  # @return [Array<Google::Apis::VmwareengineV1::ForwardingRule>]
450
577
  attr_accessor :forwarding_rules
451
578
 
452
- # Output only. The resource name of this DNS profile. Resource names are
453
- # schemeless URIs that follow the conventions in https://cloud.google.com/apis/
454
- # design/resource_names. For example: `projects/my-project/locations/us-central1-
455
- # a/privateClouds/my-cloud/dnsForwarding`
579
+ # Output only. Identifier. The resource name of this DNS profile. Resource names
580
+ # are schemeless URIs that follow the conventions in https://cloud.google.com/
581
+ # apis/design/resource_names. For example: `projects/my-project/locations/us-
582
+ # central1-a/privateClouds/my-cloud/dnsForwarding`
456
583
  # Corresponds to the JSON property `name`
457
584
  # @return [String]
458
585
  attr_accessor :name
@@ -688,10 +815,10 @@ module Google
688
815
  # @return [String]
689
816
  attr_accessor :internal_ip
690
817
 
691
- # Output only. The resource name of this external IP address. Resource names are
692
- # schemeless URIs that follow the conventions in https://cloud.google.com/apis/
693
- # design/resource_names. For example: `projects/my-project/locations/us-central1-
694
- # a/privateClouds/my-cloud/externalAddresses/my-address`
818
+ # Output only. Identifier. The resource name of this external IP address.
819
+ # Resource names are schemeless URIs that follow the conventions in https://
820
+ # cloud.google.com/apis/design/resource_names. For example: `projects/my-project/
821
+ # locations/us-central1-a/privateClouds/my-cloud/externalAddresses/my-address`
695
822
  # Corresponds to the JSON property `name`
696
823
  # @return [String]
697
824
  attr_accessor :name
@@ -904,6 +1031,36 @@ module Google
904
1031
  end
905
1032
  end
906
1033
 
1034
+ # Represents a time interval, encoded as a Timestamp start (inclusive) and a
1035
+ # Timestamp end (exclusive). The start must be less than or equal to the end.
1036
+ # When the start equals the end, the interval is empty (matches no time). When
1037
+ # both start and end are unspecified, the interval matches any time.
1038
+ class Interval
1039
+ include Google::Apis::Core::Hashable
1040
+
1041
+ # Optional. Exclusive end of the interval. If specified, a Timestamp matching
1042
+ # this interval will have to be before the end.
1043
+ # Corresponds to the JSON property `endTime`
1044
+ # @return [String]
1045
+ attr_accessor :end_time
1046
+
1047
+ # Optional. Inclusive start of the interval. If specified, a Timestamp matching
1048
+ # this interval will have to be the same or after the start.
1049
+ # Corresponds to the JSON property `startTime`
1050
+ # @return [String]
1051
+ attr_accessor :start_time
1052
+
1053
+ def initialize(**args)
1054
+ update!(**args)
1055
+ end
1056
+
1057
+ # Update properties of this object
1058
+ def update!(**args)
1059
+ @end_time = args[:end_time] if args.key?(:end_time)
1060
+ @start_time = args[:start_time] if args.key?(:start_time)
1061
+ end
1062
+ end
1063
+
907
1064
  # An IP range provided in any one of the supported formats.
908
1065
  class IpRange
909
1066
  include Google::Apis::Core::Hashable
@@ -940,6 +1097,38 @@ module Google
940
1097
  end
941
1098
  end
942
1099
 
1100
+ # Response message for VmwareEngine.ListAnnouncements
1101
+ class ListAnnouncementsResponse
1102
+ include Google::Apis::Core::Hashable
1103
+
1104
+ # A list of announcement runs.
1105
+ # Corresponds to the JSON property `announcements`
1106
+ # @return [Array<Google::Apis::VmwareengineV1::Announcement>]
1107
+ attr_accessor :announcements
1108
+
1109
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
1110
+ # field is omitted, there are no subsequent pages.
1111
+ # Corresponds to the JSON property `nextPageToken`
1112
+ # @return [String]
1113
+ attr_accessor :next_page_token
1114
+
1115
+ # list of unreachable locations
1116
+ # Corresponds to the JSON property `unreachable`
1117
+ # @return [Array<String>]
1118
+ attr_accessor :unreachable
1119
+
1120
+ def initialize(**args)
1121
+ update!(**args)
1122
+ end
1123
+
1124
+ # Update properties of this object
1125
+ def update!(**args)
1126
+ @announcements = args[:announcements] if args.key?(:announcements)
1127
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1128
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1129
+ end
1130
+ end
1131
+
943
1132
  # Response message for VmwareEngine.ListClusters
944
1133
  class ListClustersResponse
945
1134
  include Google::Apis::Core::Hashable
@@ -1462,6 +1651,38 @@ module Google
1462
1651
  end
1463
1652
  end
1464
1653
 
1654
+ # Response message for VmwareEngine.ListUpgrades.
1655
+ class ListUpgradesResponse
1656
+ include Google::Apis::Core::Hashable
1657
+
1658
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
1659
+ # field is omitted, there are no subsequent pages.
1660
+ # Corresponds to the JSON property `nextPageToken`
1661
+ # @return [String]
1662
+ attr_accessor :next_page_token
1663
+
1664
+ # List of unreachable resources.
1665
+ # Corresponds to the JSON property `unreachable`
1666
+ # @return [Array<String>]
1667
+ attr_accessor :unreachable
1668
+
1669
+ # A list of `Upgrades`.
1670
+ # Corresponds to the JSON property `upgrades`
1671
+ # @return [Array<Google::Apis::VmwareengineV1::Upgrade>]
1672
+ attr_accessor :upgrades
1673
+
1674
+ def initialize(**args)
1675
+ update!(**args)
1676
+ end
1677
+
1678
+ # Update properties of this object
1679
+ def update!(**args)
1680
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1681
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1682
+ @upgrades = args[:upgrades] if args.key?(:upgrades)
1683
+ end
1684
+ end
1685
+
1465
1686
  # Response message for VmwareEngine.ListVmwareEngineNetworks
1466
1687
  class ListVmwareEngineNetworksResponse
1467
1688
  include Google::Apis::Core::Hashable
@@ -1850,11 +2071,11 @@ module Google
1850
2071
  attr_accessor :import_custom_routes_with_public_ip
1851
2072
  alias_method :import_custom_routes_with_public_ip?, :import_custom_routes_with_public_ip
1852
2073
 
1853
- # Output only. The resource name of the network peering. NetworkPeering is a
1854
- # global resource and location can only be global. Resource names are scheme-
1855
- # less URIs that follow the conventions in https://cloud.google.com/apis/design/
1856
- # resource_names. For example: `projects/my-project/locations/global/
1857
- # networkPeerings/my-peering`
2074
+ # Output only. Identifier. The resource name of the network peering.
2075
+ # NetworkPeering is a global resource and location can only be global. Resource
2076
+ # names are scheme-less URIs that follow the conventions in https://cloud.google.
2077
+ # com/apis/design/resource_names. For example: `projects/my-project/locations/
2078
+ # global/networkPeerings/my-peering`
1858
2079
  # Corresponds to the JSON property `name`
1859
2080
  # @return [String]
1860
2081
  attr_accessor :name
@@ -1982,10 +2203,10 @@ module Google
1982
2203
  # @return [Google::Apis::VmwareengineV1::NetworkService]
1983
2204
  attr_accessor :internet_access
1984
2205
 
1985
- # Output only. The resource name of this network policy. Resource names are
1986
- # schemeless URIs that follow the conventions in https://cloud.google.com/apis/
1987
- # design/resource_names. For example: `projects/my-project/locations/us-central1/
1988
- # networkPolicies/my-network-policy`
2206
+ # Output only. Identifier. The resource name of this network policy. Resource
2207
+ # names are schemeless URIs that follow the conventions in https://cloud.google.
2208
+ # com/apis/design/resource_names. For example: `projects/my-project/locations/us-
2209
+ # central1/networkPolicies/my-network-policy`
1989
2210
  # Corresponds to the JSON property `name`
1990
2211
  # @return [String]
1991
2212
  attr_accessor :name
@@ -2609,10 +2830,10 @@ module Google
2609
2830
  # @return [Google::Apis::VmwareengineV1::ManagementCluster]
2610
2831
  attr_accessor :management_cluster
2611
2832
 
2612
- # Output only. The resource name of this private cloud. Resource names are
2613
- # schemeless URIs that follow the conventions in https://cloud.google.com/apis/
2614
- # design/resource_names. For example: `projects/my-project/locations/us-central1-
2615
- # a/privateClouds/my-cloud`
2833
+ # Output only. Identifier. The resource name of this private cloud. Resource
2834
+ # names are schemeless URIs that follow the conventions in https://cloud.google.
2835
+ # com/apis/design/resource_names. For example: `projects/my-project/locations/us-
2836
+ # central1-a/privateClouds/my-cloud`
2616
2837
  # Corresponds to the JSON property `name`
2617
2838
  # @return [String]
2618
2839
  attr_accessor :name
@@ -2925,6 +3146,55 @@ module Google
2925
3146
  end
2926
3147
  end
2927
3148
 
3149
+ # Schedule for the upgrade.
3150
+ class Schedule
3151
+ include Google::Apis::Core::Hashable
3152
+
3153
+ # Constraints to be applied while editing a schedule. These constraints ensure
3154
+ # that `Upgrade` specific requirements are met.
3155
+ # Corresponds to the JSON property `constraints`
3156
+ # @return [Google::Apis::VmwareengineV1::Constraints]
3157
+ attr_accessor :constraints
3158
+
3159
+ # Represents a time interval, encoded as a Timestamp start (inclusive) and a
3160
+ # Timestamp end (exclusive). The start must be less than or equal to the end.
3161
+ # When the start equals the end, the interval is empty (matches no time). When
3162
+ # both start and end are unspecified, the interval matches any time.
3163
+ # Corresponds to the JSON property `editWindow`
3164
+ # @return [Google::Apis::VmwareengineV1::Interval]
3165
+ attr_accessor :edit_window
3166
+
3167
+ # Output only. Output Only. Indicates who most recently edited the upgrade
3168
+ # schedule. The value is updated whenever the upgrade is rescheduled.
3169
+ # Corresponds to the JSON property `lastEditor`
3170
+ # @return [String]
3171
+ attr_accessor :last_editor
3172
+
3173
+ # Required. The scheduled start time for the upgrade.
3174
+ # Corresponds to the JSON property `startTime`
3175
+ # @return [String]
3176
+ attr_accessor :start_time
3177
+
3178
+ # Required. Weekly time windows for upgrade activities. The server performs
3179
+ # upgrade activities during these time windows to minimize disruptions.
3180
+ # Corresponds to the JSON property `weeklyWindows`
3181
+ # @return [Array<Google::Apis::VmwareengineV1::TimeWindow>]
3182
+ attr_accessor :weekly_windows
3183
+
3184
+ def initialize(**args)
3185
+ update!(**args)
3186
+ end
3187
+
3188
+ # Update properties of this object
3189
+ def update!(**args)
3190
+ @constraints = args[:constraints] if args.key?(:constraints)
3191
+ @edit_window = args[:edit_window] if args.key?(:edit_window)
3192
+ @last_editor = args[:last_editor] if args.key?(:last_editor)
3193
+ @start_time = args[:start_time] if args.key?(:start_time)
3194
+ @weekly_windows = args[:weekly_windows] if args.key?(:weekly_windows)
3195
+ end
3196
+ end
3197
+
2928
3198
  # Request message for `SetIamPolicy` method.
2929
3199
  class SetIamPolicyRequest
2930
3200
  include Google::Apis::Core::Hashable
@@ -3064,10 +3334,10 @@ module Google
3064
3334
  # @return [String]
3065
3335
  attr_accessor :ip_cidr_range
3066
3336
 
3067
- # Output only. The resource name of this subnet. Resource names are schemeless
3068
- # URIs that follow the conventions in https://cloud.google.com/apis/design/
3069
- # resource_names. For example: `projects/my-project/locations/us-central1-a/
3070
- # privateClouds/my-cloud/subnets/my-subnet`
3337
+ # Output only. Identifier. The resource name of this subnet. Resource names are
3338
+ # schemeless URIs that follow the conventions in https://cloud.google.com/apis/
3339
+ # design/resource_names. For example: `projects/my-project/locations/us-central1-
3340
+ # a/privateClouds/my-cloud/subnets/my-subnet`
3071
3341
  # Corresponds to the JSON property `name`
3072
3342
  # @return [String]
3073
3343
  attr_accessor :name
@@ -3168,6 +3438,85 @@ module Google
3168
3438
  end
3169
3439
  end
3170
3440
 
3441
+ # Represents a time of day. The date and time zone are either not significant or
3442
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
3443
+ # types are google.type.Date and `google.protobuf.Timestamp`.
3444
+ class TimeOfDay
3445
+ include Google::Apis::Core::Hashable
3446
+
3447
+ # Hours of a day in 24 hour format. Must be greater than or equal to 0 and
3448
+ # typically must be less than or equal to 23. An API may choose to allow the
3449
+ # value "24:00:00" for scenarios like business closing time.
3450
+ # Corresponds to the JSON property `hours`
3451
+ # @return [Fixnum]
3452
+ attr_accessor :hours
3453
+
3454
+ # Minutes of an hour. Must be greater than or equal to 0 and less than or equal
3455
+ # to 59.
3456
+ # Corresponds to the JSON property `minutes`
3457
+ # @return [Fixnum]
3458
+ attr_accessor :minutes
3459
+
3460
+ # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
3461
+ # less than or equal to 999,999,999.
3462
+ # Corresponds to the JSON property `nanos`
3463
+ # @return [Fixnum]
3464
+ attr_accessor :nanos
3465
+
3466
+ # Seconds of a minute. Must be greater than or equal to 0 and typically must be
3467
+ # less than or equal to 59. An API may allow the value 60 if it allows leap-
3468
+ # seconds.
3469
+ # Corresponds to the JSON property `seconds`
3470
+ # @return [Fixnum]
3471
+ attr_accessor :seconds
3472
+
3473
+ def initialize(**args)
3474
+ update!(**args)
3475
+ end
3476
+
3477
+ # Update properties of this object
3478
+ def update!(**args)
3479
+ @hours = args[:hours] if args.key?(:hours)
3480
+ @minutes = args[:minutes] if args.key?(:minutes)
3481
+ @nanos = args[:nanos] if args.key?(:nanos)
3482
+ @seconds = args[:seconds] if args.key?(:seconds)
3483
+ end
3484
+ end
3485
+
3486
+ # Represents the time window to perform upgrade activities.
3487
+ class TimeWindow
3488
+ include Google::Apis::Core::Hashable
3489
+
3490
+ # Required. Day of the week for this window.
3491
+ # Corresponds to the JSON property `dayOfWeek`
3492
+ # @return [String]
3493
+ attr_accessor :day_of_week
3494
+
3495
+ # Required. The duration of the window. The max allowed duration for any window
3496
+ # is 24 hours.
3497
+ # Corresponds to the JSON property `duration`
3498
+ # @return [String]
3499
+ attr_accessor :duration
3500
+
3501
+ # Represents a time of day. The date and time zone are either not significant or
3502
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
3503
+ # types are google.type.Date and `google.protobuf.Timestamp`.
3504
+ # Corresponds to the JSON property `startTime`
3505
+ # @return [Google::Apis::VmwareengineV1::TimeOfDay]
3506
+ attr_accessor :start_time
3507
+
3508
+ def initialize(**args)
3509
+ update!(**args)
3510
+ end
3511
+
3512
+ # Update properties of this object
3513
+ def update!(**args)
3514
+ @day_of_week = args[:day_of_week] if args.key?(:day_of_week)
3515
+ @duration = args[:duration] if args.key?(:duration)
3516
+ @start_time = args[:start_time] if args.key?(:start_time)
3517
+ end
3518
+ end
3519
+
3171
3520
  # Request message for VmwareEngine.UndeletePrivateCloud
3172
3521
  class UndeletePrivateCloudRequest
3173
3522
  include Google::Apis::Core::Hashable
@@ -3188,6 +3537,119 @@ module Google
3188
3537
  end
3189
3538
  end
3190
3539
 
3540
+ # Describes Private cloud Upgrade.
3541
+ class Upgrade
3542
+ include Google::Apis::Core::Hashable
3543
+
3544
+ # Output only. Output Only. The list of component upgrades.
3545
+ # Corresponds to the JSON property `componentUpgrades`
3546
+ # @return [Array<Google::Apis::VmwareengineV1::VmwareUpgradeComponent>]
3547
+ attr_accessor :component_upgrades
3548
+
3549
+ # Output only. Output Only. Creation time of this resource.
3550
+ # Corresponds to the JSON property `createTime`
3551
+ # @return [String]
3552
+ attr_accessor :create_time
3553
+
3554
+ # Output only. Output Only. The description of the upgrade. This is used to
3555
+ # provide additional information about the private cloud upgrade, such as the
3556
+ # upgrade's purpose, the changes included in the upgrade, or any other relevant
3557
+ # information about the upgrade.
3558
+ # Corresponds to the JSON property `description`
3559
+ # @return [String]
3560
+ attr_accessor :description
3561
+
3562
+ # Output only. Output Only. End time of the upgrade.
3563
+ # Corresponds to the JSON property `endTime`
3564
+ # @return [String]
3565
+ attr_accessor :end_time
3566
+
3567
+ # Output only. Output Only. The estimated total duration of the upgrade. This
3568
+ # information can be used to plan or schedule upgrades to minimize disruptions.
3569
+ # Please note that the estimated duration is only an estimate. The actual
3570
+ # upgrade duration may vary.
3571
+ # Corresponds to the JSON property `estimatedDuration`
3572
+ # @return [String]
3573
+ attr_accessor :estimated_duration
3574
+
3575
+ # The etag for the upgrade resource. If this is provided on update, it must
3576
+ # match the server's etag.
3577
+ # Corresponds to the JSON property `etag`
3578
+ # @return [String]
3579
+ attr_accessor :etag
3580
+
3581
+ # Output only. Identifier. The resource name of the private cloud `Upgrade`.
3582
+ # Resource names are schemeless URIs that follow the conventions in https://
3583
+ # cloud.google.com/apis/design/resource_names. For example: `projects/my-project/
3584
+ # locations/us-west1-a/privateClouds/my-cloud/upgrades/my-upgrade`
3585
+ # Corresponds to the JSON property `name`
3586
+ # @return [String]
3587
+ attr_accessor :name
3588
+
3589
+ # Schedule for the upgrade.
3590
+ # Corresponds to the JSON property `schedule`
3591
+ # @return [Google::Apis::VmwareengineV1::Schedule]
3592
+ attr_accessor :schedule
3593
+
3594
+ # Output only. Output Only. The start version
3595
+ # Corresponds to the JSON property `startVersion`
3596
+ # @return [String]
3597
+ attr_accessor :start_version
3598
+
3599
+ # Output only. The current state of the upgrade.
3600
+ # Corresponds to the JSON property `state`
3601
+ # @return [String]
3602
+ attr_accessor :state
3603
+
3604
+ # Output only. Output Only. The target version
3605
+ # Corresponds to the JSON property `targetVersion`
3606
+ # @return [String]
3607
+ attr_accessor :target_version
3608
+
3609
+ # Output only. Output Only. The type of upgrade.
3610
+ # Corresponds to the JSON property `type`
3611
+ # @return [String]
3612
+ attr_accessor :type
3613
+
3614
+ # Output only. System-generated unique identifier for the resource.
3615
+ # Corresponds to the JSON property `uid`
3616
+ # @return [String]
3617
+ attr_accessor :uid
3618
+
3619
+ # Output only. Output Only. Last update time of this resource.
3620
+ # Corresponds to the JSON property `updateTime`
3621
+ # @return [String]
3622
+ attr_accessor :update_time
3623
+
3624
+ # Output only.
3625
+ # Corresponds to the JSON property `version`
3626
+ # @return [String]
3627
+ attr_accessor :version
3628
+
3629
+ def initialize(**args)
3630
+ update!(**args)
3631
+ end
3632
+
3633
+ # Update properties of this object
3634
+ def update!(**args)
3635
+ @component_upgrades = args[:component_upgrades] if args.key?(:component_upgrades)
3636
+ @create_time = args[:create_time] if args.key?(:create_time)
3637
+ @description = args[:description] if args.key?(:description)
3638
+ @end_time = args[:end_time] if args.key?(:end_time)
3639
+ @estimated_duration = args[:estimated_duration] if args.key?(:estimated_duration)
3640
+ @etag = args[:etag] if args.key?(:etag)
3641
+ @name = args[:name] if args.key?(:name)
3642
+ @schedule = args[:schedule] if args.key?(:schedule)
3643
+ @start_version = args[:start_version] if args.key?(:start_version)
3644
+ @state = args[:state] if args.key?(:state)
3645
+ @target_version = args[:target_version] if args.key?(:target_version)
3646
+ @type = args[:type] if args.key?(:type)
3647
+ @uid = args[:uid] if args.key?(:uid)
3648
+ @update_time = args[:update_time] if args.key?(:update_time)
3649
+ @version = args[:version] if args.key?(:version)
3650
+ end
3651
+ end
3652
+
3191
3653
  # Details about a vCenter Server management appliance.
3192
3654
  class Vcenter
3193
3655
  include Google::Apis::Core::Hashable
@@ -3247,10 +3709,10 @@ module Google
3247
3709
  # @return [String]
3248
3710
  attr_accessor :etag
3249
3711
 
3250
- # Output only. The resource name of the VMware Engine network. Resource names
3251
- # are schemeless URIs that follow the conventions in https://cloud.google.com/
3252
- # apis/design/resource_names. For example: `projects/my-project/locations/global/
3253
- # vmwareEngineNetworks/my-network`
3712
+ # Output only. Identifier. The resource name of the VMware Engine network.
3713
+ # Resource names are schemeless URIs that follow the conventions in https://
3714
+ # cloud.google.com/apis/design/resource_names. For example: `projects/my-project/
3715
+ # locations/global/vmwareEngineNetworks/my-network`
3254
3716
  # Corresponds to the JSON property `name`
3255
3717
  # @return [String]
3256
3718
  attr_accessor :name
@@ -3300,6 +3762,31 @@ module Google
3300
3762
  end
3301
3763
  end
3302
3764
 
3765
+ # Per component upgrade resource
3766
+ class VmwareUpgradeComponent
3767
+ include Google::Apis::Core::Hashable
3768
+
3769
+ # Output only. Type of component
3770
+ # Corresponds to the JSON property `componentType`
3771
+ # @return [String]
3772
+ attr_accessor :component_type
3773
+
3774
+ # Output only. Component's upgrade state.
3775
+ # Corresponds to the JSON property `state`
3776
+ # @return [String]
3777
+ attr_accessor :state
3778
+
3779
+ def initialize(**args)
3780
+ update!(**args)
3781
+ end
3782
+
3783
+ # Update properties of this object
3784
+ def update!(**args)
3785
+ @component_type = args[:component_type] if args.key?(:component_type)
3786
+ @state = args[:state] if args.key?(:state)
3787
+ end
3788
+ end
3789
+
3303
3790
  # Represents a VMware Engine VPC network that is managed by a VMware Engine
3304
3791
  # network resource.
3305
3792
  class VpcNetwork
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VmwareengineV1
18
18
  # Version of the google-apis-vmwareengine_v1 gem
19
- GEM_VERSION = "0.7.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240701"
25
+ REVISION = "20250218"
26
26
  end
27
27
  end
28
28
  end