google-apis-managedidentities_v1alpha1 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: ff185d8035a1c83eb0e2b8bacadc4556bab91dc872415dbefab5d33a7e11e0ad
4
- data.tar.gz: 10baedbc1d017dc17f1f0032456536295ac873d8479585d8cb010deff8c13263
3
+ metadata.gz: 412ab3dba3c575114e3e16dd1f8fcd03309e9e48abd7c479b0fa8223388cbd9d
4
+ data.tar.gz: 8c09aa7ae52e47f2a950eec5058c9a5d8d1f3989ac5eef891adb378591db24b3
5
5
  SHA512:
6
- metadata.gz: 3ab5915555ad8831d1dcf3f128afa2a92ee3c767e0fee5fe8dd17d71b07a70d7677be892df2bdd6c487969a46d2b4697955d4e185aa49ee84cfc0b59938488bb
7
- data.tar.gz: 8247e34b82b46efcdd78fce5084c59c6659465efba8d5af0aca8277a9309e1aa955a8a82e39b237f3c31ae4bf95f098206447ddd3b45777642fc05472febb2b8
6
+ metadata.gz: 064bfb6d71f7e717056ca604041134718d9e9b186766654deffc4dcd388ce9b7647eeb74a684e7d10365d3e0e0adb8554b453d08b2adeac6c2ca19d65e0c5124
7
+ data.tar.gz: 4abed29ae8e3e4adaa637f2b463f6f36fd90ac39830a40c731254e724e7b0fe8fb65a3f585223960b0007c2357705c7bfba28c4c123342457b4fd69d374d7969
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-managedidentities_v1alpha1
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-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20210701
@@ -879,14 +879,6 @@ module Google
879
879
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
880
880
  include Google::Apis::Core::Hashable
881
881
 
882
- # By default node is eligible if instance is eligible. But individual node might
883
- # be excluded from SLO by adding entry here. For semantic see SloMetadata.
884
- # exclusions. If both instance and node level exclusions are present for time
885
- # period, the node level's reason will be reported by Eligibility Exporter.
886
- # Corresponds to the JSON property `exclusions`
887
- # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
888
- attr_accessor :exclusions
889
-
890
882
  # The location of the node, if different from instance location.
891
883
  # Corresponds to the JSON property `location`
892
884
  # @return [String]
@@ -908,7 +900,6 @@ module Google
908
900
 
909
901
  # Update properties of this object
910
902
  def update!(**args)
911
- @exclusions = args[:exclusions] if args.key?(:exclusions)
912
903
  @location = args[:location] if args.key?(:location)
913
904
  @node_id = args[:node_id] if args.key?(:node_id)
914
905
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
@@ -1003,71 +994,11 @@ module Google
1003
994
  end
1004
995
  end
1005
996
 
1006
- # SloExclusion represents an exclusion in SLI calculation applies to all SLOs.
1007
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
1008
- include Google::Apis::Core::Hashable
1009
-
1010
- # Exclusion duration. No restrictions on the possible values. When an ongoing
1011
- # operation is taking longer than initially expected, an existing entry in the
1012
- # exclusion list can be updated by extending the duration. This is supported by
1013
- # the subsystem exporting eligibility data as long as such extension is
1014
- # committed at least 10 minutes before the original exclusion expiration -
1015
- # otherwise it is possible that there will be "gaps" in the exclusion
1016
- # application in the exported timeseries.
1017
- # Corresponds to the JSON property `duration`
1018
- # @return [String]
1019
- attr_accessor :duration
1020
-
1021
- # Human-readable reason for the exclusion. This should be a static string (e.g. "
1022
- # Disruptive update in progress") and should not contain dynamically generated
1023
- # data (e.g. instance name). Can be left empty.
1024
- # Corresponds to the JSON property `reason`
1025
- # @return [String]
1026
- attr_accessor :reason
1027
-
1028
- # Name of an SLI that this exclusion applies to. Can be left empty, signaling
1029
- # that the instance should be excluded from all SLIs.
1030
- # Corresponds to the JSON property `sliName`
1031
- # @return [String]
1032
- attr_accessor :sli_name
1033
-
1034
- # Start time of the exclusion. No alignment (e.g. to a full minute) needed.
1035
- # Corresponds to the JSON property `startTime`
1036
- # @return [String]
1037
- attr_accessor :start_time
1038
-
1039
- def initialize(**args)
1040
- update!(**args)
1041
- end
1042
-
1043
- # Update properties of this object
1044
- def update!(**args)
1045
- @duration = args[:duration] if args.key?(:duration)
1046
- @reason = args[:reason] if args.key?(:reason)
1047
- @sli_name = args[:sli_name] if args.key?(:sli_name)
1048
- @start_time = args[:start_time] if args.key?(:start_time)
1049
- end
1050
- end
1051
-
1052
997
  # SloMetadata contains resources required for proper SLO classification of the
1053
998
  # instance.
1054
999
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
1055
1000
  include Google::Apis::Core::Hashable
1056
1001
 
1057
- # List of SLO exclusion windows. When multiple entries in the list match (
1058
- # matching the exclusion time-window against current time point) the exclusion
1059
- # reason used in the first matching entry will be published. It is not needed to
1060
- # include expired exclusion in this list, as only the currently applicable
1061
- # exclusions are taken into account by the eligibility exporting subsystem (the
1062
- # historical state of exclusions will be reflected in the historically produced
1063
- # timeseries regardless of the current state). This field can be used to mark
1064
- # the instance as temporary ineligible for the purpose of SLO calculation. For
1065
- # permanent instance SLO exclusion, use of custom instance eligibility is
1066
- # recommended. See 'eligibility' field below.
1067
- # Corresponds to the JSON property `exclusions`
1068
- # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
1069
- attr_accessor :exclusions
1070
-
1071
1002
  # Optional. List of nodes. Some producers need to use per-node metadata to
1072
1003
  # calculate SLO. This field allows such producers to publish per-node SLO meta
1073
1004
  # data, which will be consumed by SSA Eligibility Exporter and published in the
@@ -1094,7 +1025,6 @@ module Google
1094
1025
 
1095
1026
  # Update properties of this object
1096
1027
  def update!(**args)
1097
- @exclusions = args[:exclusions] if args.key?(:exclusions)
1098
1028
  @nodes = args[:nodes] if args.key?(:nodes)
1099
1029
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
1100
1030
  @tier = args[:tier] if args.key?(:tier)
@@ -1524,7 +1454,7 @@ module Google
1524
1454
  attr_accessor :api_version
1525
1455
 
1526
1456
  # Output only. Identifies whether the user has requested cancellation of the
1527
- # operation. Operations that have successfully been cancelled have Operation.
1457
+ # operation. Operations that have been cancelled successfully have Operation.
1528
1458
  # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1529
1459
  # CANCELLED`.
1530
1460
  # Corresponds to the JSON property `cancelRequested`
@@ -1666,7 +1596,7 @@ module Google
1666
1596
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1667
1597
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1668
1598
  # description: Does not grant access after Sep 2020 expression: request.time <
1669
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1599
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1670
1600
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1671
1601
  # google.com/iam/docs/).
1672
1602
  class Policy
@@ -1887,7 +1817,7 @@ module Google
1887
1817
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1888
1818
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1889
1819
  # description: Does not grant access after Sep 2020 expression: request.time <
1890
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1820
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1891
1821
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1892
1822
  # google.com/iam/docs/).
1893
1823
  # Corresponds to the JSON property `policy`
@@ -2125,8 +2055,7 @@ module Google
2125
2055
 
2126
2056
  # Deny Maintenance Period that is applied to resource to indicate when
2127
2057
  # maintenance is forbidden. User can specify zero or more non-overlapping deny
2128
- # periods. For V1, Maximum number of deny_maintenance_periods is expected to be
2129
- # one.
2058
+ # periods. Maximum number of deny_maintenance_periods expected is one.
2130
2059
  # Corresponds to the JSON property `denyMaintenancePeriods`
2131
2060
  # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::DenyMaintenancePeriod>]
2132
2061
  attr_accessor :deny_maintenance_periods
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedidentitiesV1alpha1
18
18
  # Version of the google-apis-managedidentities_v1alpha1 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::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::ManagedidentitiesV1alpha1::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::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1alpha1::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::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
567
-
568
548
  collection :nodes, as: 'nodes', class: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
569
549
 
570
550
  property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1alpha1'
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_v1alpha1
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_v1alpha1/CHANGELOG.md
62
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.12.0
62
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.13.0
63
63
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1alpha1
64
64
  post_install_message:
65
65
  rdoc_options: []