google-apis-managedidentities_v1beta1 0.12.0 → 0.13.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d13203d085f7b0f1f483a65bd6d61d9814d51aab04d343aa87638fb181be029
4
- data.tar.gz: 741c3667f177e3b8a84ec261908331f61f11c77c0308d4ce7aef1e4622398155
3
+ metadata.gz: 1a9f1b832a4b21eaa14e606863930c3925382bbf541817d3103cb70845324ef1
4
+ data.tar.gz: 8e43b9bdea4f0daeacf56342c8b20d8d722b6dd0e523a42cb63f5cd7dc1380ea
5
5
  SHA512:
6
- metadata.gz: e2ddad60fd870b83f6edd82d17f39440b96678a6edd9dd51cfa0f12278363e31b3b8747c378916294dfae63fb1344d449dc40a34a261cd4f3133998eb9af65d9
7
- data.tar.gz: b8f5f86719647053b2f641c8b03d07396e6e408691f3ed32d1765d4760c122ee6bf25762f21aced3287a26179c832c28141afce9d97e7d237ed75bf4fa1307ac
6
+ metadata.gz: 18830e2a4dd3f0f567a15233945164463a08294bf688d9fac7d887b681485335c3cf0ba0f3930212828d6da098e2d6af584e84b7116e41442f1c980ebb3719f1
7
+ data.tar.gz: f54f0456bd114bbe182ecd91a87a7655090288c3675eee0a230be53337edb72ac697dc304327f11b68d73adc0de184c43089b404970cf3b0ebc73b9791c733c9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-managedidentities_v1beta1
2
2
 
3
+ ### v0.13.0 (2021-08-28)
4
+
5
+ * Regenerated from discovery document revision 20210819
6
+
3
7
  ### v0.12.0 (2021-07-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20210701
@@ -869,14 +869,6 @@ module Google
869
869
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
870
870
  include Google::Apis::Core::Hashable
871
871
 
872
- # By default node is eligible if instance is eligible. But individual node might
873
- # be excluded from SLO by adding entry here. For semantic see SloMetadata.
874
- # exclusions. If both instance and node level exclusions are present for time
875
- # period, the node level's reason will be reported by Eligibility Exporter.
876
- # Corresponds to the JSON property `exclusions`
877
- # @return [Array<Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
878
- attr_accessor :exclusions
879
-
880
872
  # The location of the node, if different from instance location.
881
873
  # Corresponds to the JSON property `location`
882
874
  # @return [String]
@@ -898,7 +890,6 @@ module Google
898
890
 
899
891
  # Update properties of this object
900
892
  def update!(**args)
901
- @exclusions = args[:exclusions] if args.key?(:exclusions)
902
893
  @location = args[:location] if args.key?(:location)
903
894
  @node_id = args[:node_id] if args.key?(:node_id)
904
895
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
@@ -993,71 +984,11 @@ module Google
993
984
  end
994
985
  end
995
986
 
996
- # SloExclusion represents an exclusion in SLI calculation applies to all SLOs.
997
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
998
- include Google::Apis::Core::Hashable
999
-
1000
- # Exclusion duration. No restrictions on the possible values. When an ongoing
1001
- # operation is taking longer than initially expected, an existing entry in the
1002
- # exclusion list can be updated by extending the duration. This is supported by
1003
- # the subsystem exporting eligibility data as long as such extension is
1004
- # committed at least 10 minutes before the original exclusion expiration -
1005
- # otherwise it is possible that there will be "gaps" in the exclusion
1006
- # application in the exported timeseries.
1007
- # Corresponds to the JSON property `duration`
1008
- # @return [String]
1009
- attr_accessor :duration
1010
-
1011
- # Human-readable reason for the exclusion. This should be a static string (e.g. "
1012
- # Disruptive update in progress") and should not contain dynamically generated
1013
- # data (e.g. instance name). Can be left empty.
1014
- # Corresponds to the JSON property `reason`
1015
- # @return [String]
1016
- attr_accessor :reason
1017
-
1018
- # Name of an SLI that this exclusion applies to. Can be left empty, signaling
1019
- # that the instance should be excluded from all SLIs.
1020
- # Corresponds to the JSON property `sliName`
1021
- # @return [String]
1022
- attr_accessor :sli_name
1023
-
1024
- # Start time of the exclusion. No alignment (e.g. to a full minute) needed.
1025
- # Corresponds to the JSON property `startTime`
1026
- # @return [String]
1027
- attr_accessor :start_time
1028
-
1029
- def initialize(**args)
1030
- update!(**args)
1031
- end
1032
-
1033
- # Update properties of this object
1034
- def update!(**args)
1035
- @duration = args[:duration] if args.key?(:duration)
1036
- @reason = args[:reason] if args.key?(:reason)
1037
- @sli_name = args[:sli_name] if args.key?(:sli_name)
1038
- @start_time = args[:start_time] if args.key?(:start_time)
1039
- end
1040
- end
1041
-
1042
987
  # SloMetadata contains resources required for proper SLO classification of the
1043
988
  # instance.
1044
989
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
1045
990
  include Google::Apis::Core::Hashable
1046
991
 
1047
- # List of SLO exclusion windows. When multiple entries in the list match (
1048
- # matching the exclusion time-window against current time point) the exclusion
1049
- # reason used in the first matching entry will be published. It is not needed to
1050
- # include expired exclusion in this list, as only the currently applicable
1051
- # exclusions are taken into account by the eligibility exporting subsystem (the
1052
- # historical state of exclusions will be reflected in the historically produced
1053
- # timeseries regardless of the current state). This field can be used to mark
1054
- # the instance as temporary ineligible for the purpose of SLO calculation. For
1055
- # permanent instance SLO exclusion, use of custom instance eligibility is
1056
- # recommended. See 'eligibility' field below.
1057
- # Corresponds to the JSON property `exclusions`
1058
- # @return [Array<Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
1059
- attr_accessor :exclusions
1060
-
1061
992
  # Optional. List of nodes. Some producers need to use per-node metadata to
1062
993
  # calculate SLO. This field allows such producers to publish per-node SLO meta
1063
994
  # data, which will be consumed by SSA Eligibility Exporter and published in the
@@ -1084,7 +1015,6 @@ module Google
1084
1015
 
1085
1016
  # Update properties of this object
1086
1017
  def update!(**args)
1087
- @exclusions = args[:exclusions] if args.key?(:exclusions)
1088
1018
  @nodes = args[:nodes] if args.key?(:nodes)
1089
1019
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
1090
1020
  @tier = args[:tier] if args.key?(:tier)
@@ -1514,7 +1444,7 @@ module Google
1514
1444
  attr_accessor :api_version
1515
1445
 
1516
1446
  # Output only. Identifies whether the user has requested cancellation of the
1517
- # operation. Operations that have successfully been cancelled have Operation.
1447
+ # operation. Operations that have been cancelled successfully have Operation.
1518
1448
  # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1519
1449
  # CANCELLED`.
1520
1450
  # Corresponds to the JSON property `cancelRequested`
@@ -1656,7 +1586,7 @@ module Google
1656
1586
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1657
1587
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1658
1588
  # description: Does not grant access after Sep 2020 expression: request.time <
1659
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1589
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1660
1590
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1661
1591
  # google.com/iam/docs/).
1662
1592
  class Policy
@@ -1836,7 +1766,7 @@ module Google
1836
1766
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1837
1767
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1838
1768
  # description: Does not grant access after Sep 2020 expression: request.time <
1839
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1769
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1840
1770
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1841
1771
  # google.com/iam/docs/).
1842
1772
  # Corresponds to the JSON property `policy`
@@ -2115,8 +2045,7 @@ module Google
2115
2045
 
2116
2046
  # Deny Maintenance Period that is applied to resource to indicate when
2117
2047
  # maintenance is forbidden. User can specify zero or more non-overlapping deny
2118
- # periods. For V1, Maximum number of deny_maintenance_periods is expected to be
2119
- # one.
2048
+ # periods. Maximum number of deny_maintenance_periods expected is one.
2120
2049
  # Corresponds to the JSON property `denyMaintenancePeriods`
2121
2050
  # @return [Array<Google::Apis::ManagedidentitiesV1beta1::DenyMaintenancePeriod>]
2122
2051
  attr_accessor :deny_maintenance_periods
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedidentitiesV1beta1
18
18
  # Version of the google-apis-managedidentities_v1beta1 gem
19
- GEM_VERSION = "0.12.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210701"
25
+ REVISION = "20210819"
26
26
  end
27
27
  end
28
28
  end
@@ -148,12 +148,6 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
152
- class Representation < Google::Apis::Core::JsonRepresentation; end
153
-
154
- include Google::Apis::Core::JsonObjectSupport
155
- end
156
-
157
151
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
158
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
153
 
@@ -517,8 +511,6 @@ module Google
517
511
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
518
512
  # @private
519
513
  class Representation < Google::Apis::Core::JsonRepresentation
520
- collection :exclusions, as: 'exclusions', class: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
521
-
522
514
  property :location, as: 'location'
523
515
  property :node_id, as: 'nodeId'
524
516
  property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
@@ -550,21 +542,9 @@ module Google
550
542
  end
551
543
  end
552
544
 
553
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
554
- # @private
555
- class Representation < Google::Apis::Core::JsonRepresentation
556
- property :duration, as: 'duration'
557
- property :reason, as: 'reason'
558
- property :sli_name, as: 'sliName'
559
- property :start_time, as: 'startTime'
560
- end
561
- end
562
-
563
545
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
564
546
  # @private
565
547
  class Representation < Google::Apis::Core::JsonRepresentation
566
- collection :exclusions, as: 'exclusions', class: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
567
-
568
548
  collection :nodes, as: 'nodes', class: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
569
549
 
570
550
  property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta1'
32
32
 
33
- # See, edit, configure, and delete your Google Cloud Platform data
33
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-managedidentities_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-12 00:00:00.000000000 Z
11
+ date: 2021-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -59,7 +59,7 @@ licenses:
59
59
  metadata:
60
60
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
61
61
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1beta1/CHANGELOG.md
62
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1beta1/v0.12.0
62
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1beta1/v0.13.0
63
63
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1beta1
64
64
  post_install_message:
65
65
  rdoc_options: []