google-apis-memcache_v1beta2 0.9.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce85c973908df361a71d2fc57a1d644434af56e68f2abb3f2ee9cbd5435799e1
4
- data.tar.gz: 4402adeb0876aca5d863aa4796411b1b158bbe2f986e1492bcfa8956f151649f
3
+ metadata.gz: cf8bd92539ab1288dcfe6560f5b26a3bd5e6e147af92b075ec5f554dae8915b6
4
+ data.tar.gz: '086c15cef11131d1d0626051bfd1149cdcfb94632cd708e196b1b437d8f936c7'
5
5
  SHA512:
6
- metadata.gz: 59e35bb45f5a1874e78d8848fcef5e822d609ee8fb9dc9c517e10bd3e7464af78bc3cafc19fb6417409b6177653f28a3bcd18ba1bda0d944f2a619f2670d9cec
7
- data.tar.gz: f9f189566e92588ebfb82aabd51dd118822e77ee5fb949ce2ce51b9cee4f0862a3df48a5c6d612a50ff615a8f3d831898b1eef9a5a820fe4203b8dd40c2758cd
6
+ metadata.gz: 7ff1db5323b8acb4ce8223c9c21e55a4c74968f6adb93502f1c86dda815a418e54884b082965b4c6313c4e5a74ff5270bd4bb1c75d00487cb558ff04ee1d5630
7
+ data.tar.gz: 261675cdcee73248b0b10f8059f89cb0b2baddede861d884d24bbfd0c8eae867a7c053e10fda42d9c2f60d5b1d8a7f96fbb7e0bd07e5fb778c381912a77b91b6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-memcache_v1beta2
2
2
 
3
+ ### v0.13.0 (2021-09-12)
4
+
5
+ * Regenerated from discovery document revision 20210907
6
+
7
+ ### v0.12.0 (2021-09-01)
8
+
9
+ * Regenerated from discovery document revision 20210810
10
+
11
+ ### v0.11.0 (2021-07-09)
12
+
13
+ * Regenerated from discovery document revision 20210707
14
+
15
+ ### v0.10.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.9.0 (2021-06-24)
4
20
 
5
21
  * Unspecified changes
@@ -543,14 +543,6 @@ module Google
543
543
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
544
544
  include Google::Apis::Core::Hashable
545
545
 
546
- # By default node is eligible if instance is eligible. But individual node might
547
- # be excluded from SLO by adding entry here. For semantic see SloMetadata.
548
- # exclusions. If both instance and node level exclusions are present for time
549
- # period, the node level's reason will be reported by Eligibility Exporter.
550
- # Corresponds to the JSON property `exclusions`
551
- # @return [Array<Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
552
- attr_accessor :exclusions
553
-
554
546
  # The location of the node, if different from instance location.
555
547
  # Corresponds to the JSON property `location`
556
548
  # @return [String]
@@ -561,15 +553,20 @@ module Google
561
553
  # @return [String]
562
554
  attr_accessor :node_id
563
555
 
556
+ # PerSliSloEligibility is a mapping from an SLI name to eligibility.
557
+ # Corresponds to the JSON property `perSliEligibility`
558
+ # @return [Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility]
559
+ attr_accessor :per_sli_eligibility
560
+
564
561
  def initialize(**args)
565
562
  update!(**args)
566
563
  end
567
564
 
568
565
  # Update properties of this object
569
566
  def update!(**args)
570
- @exclusions = args[:exclusions] if args.key?(:exclusions)
571
567
  @location = args[:location] if args.key?(:location)
572
568
  @node_id = args[:node_id] if args.key?(:node_id)
569
+ @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
573
570
  end
574
571
  end
575
572
 
@@ -661,71 +658,11 @@ module Google
661
658
  end
662
659
  end
663
660
 
664
- # SloExclusion represents an exclusion in SLI calculation applies to all SLOs.
665
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
666
- include Google::Apis::Core::Hashable
667
-
668
- # Exclusion duration. No restrictions on the possible values. When an ongoing
669
- # operation is taking longer than initially expected, an existing entry in the
670
- # exclusion list can be updated by extending the duration. This is supported by
671
- # the subsystem exporting eligibility data as long as such extension is
672
- # committed at least 10 minutes before the original exclusion expiration -
673
- # otherwise it is possible that there will be "gaps" in the exclusion
674
- # application in the exported timeseries.
675
- # Corresponds to the JSON property `duration`
676
- # @return [String]
677
- attr_accessor :duration
678
-
679
- # Human-readable reason for the exclusion. This should be a static string (e.g. "
680
- # Disruptive update in progress") and should not contain dynamically generated
681
- # data (e.g. instance name). Can be left empty.
682
- # Corresponds to the JSON property `reason`
683
- # @return [String]
684
- attr_accessor :reason
685
-
686
- # Name of an SLI that this exclusion applies to. Can be left empty, signaling
687
- # that the instance should be excluded from all SLIs.
688
- # Corresponds to the JSON property `sliName`
689
- # @return [String]
690
- attr_accessor :sli_name
691
-
692
- # Start time of the exclusion. No alignment (e.g. to a full minute) needed.
693
- # Corresponds to the JSON property `startTime`
694
- # @return [String]
695
- attr_accessor :start_time
696
-
697
- def initialize(**args)
698
- update!(**args)
699
- end
700
-
701
- # Update properties of this object
702
- def update!(**args)
703
- @duration = args[:duration] if args.key?(:duration)
704
- @reason = args[:reason] if args.key?(:reason)
705
- @sli_name = args[:sli_name] if args.key?(:sli_name)
706
- @start_time = args[:start_time] if args.key?(:start_time)
707
- end
708
- end
709
-
710
661
  # SloMetadata contains resources required for proper SLO classification of the
711
662
  # instance.
712
663
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
713
664
  include Google::Apis::Core::Hashable
714
665
 
715
- # List of SLO exclusion windows. When multiple entries in the list match (
716
- # matching the exclusion time-window against current time point) the exclusion
717
- # reason used in the first matching entry will be published. It is not needed to
718
- # include expired exclusion in this list, as only the currently applicable
719
- # exclusions are taken into account by the eligibility exporting subsystem (the
720
- # historical state of exclusions will be reflected in the historically produced
721
- # timeseries regardless of the current state). This field can be used to mark
722
- # the instance as temporary ineligible for the purpose of SLO calculation. For
723
- # permanent instance SLO exclusion, use of custom instance eligibility is
724
- # recommended. See 'eligibility' field below.
725
- # Corresponds to the JSON property `exclusions`
726
- # @return [Array<Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
727
- attr_accessor :exclusions
728
-
729
666
  # Optional. List of nodes. Some producers need to use per-node metadata to
730
667
  # calculate SLO. This field allows such producers to publish per-node SLO meta
731
668
  # data, which will be consumed by SSA Eligibility Exporter and published in the
@@ -752,7 +689,6 @@ module Google
752
689
 
753
690
  # Update properties of this object
754
691
  def update!(**args)
755
- @exclusions = args[:exclusions] if args.key?(:exclusions)
756
692
  @nodes = args[:nodes] if args.key?(:nodes)
757
693
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
758
694
  @tier = args[:tier] if args.key?(:tier)
@@ -1548,8 +1484,7 @@ module Google
1548
1484
 
1549
1485
  # Deny Maintenance Period that is applied to resource to indicate when
1550
1486
  # maintenance is forbidden. User can specify zero or more non-overlapping deny
1551
- # periods. For V1, Maximum number of deny_maintenance_periods is expected to be
1552
- # one.
1487
+ # periods. Maximum number of deny_maintenance_periods expected is one.
1553
1488
  # Corresponds to the JSON property `denyMaintenancePeriods`
1554
1489
  # @return [Array<Google::Apis::MemcacheV1beta2::DenyMaintenancePeriod>]
1555
1490
  attr_accessor :deny_maintenance_periods
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MemcacheV1beta2
18
18
  # Version of the google-apis-memcache_v1beta2 gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210615"
25
+ REVISION = "20210907"
26
26
  end
27
27
  end
28
28
  end
@@ -124,12 +124,6 @@ module Google
124
124
  include Google::Apis::Core::JsonObjectSupport
125
125
  end
126
126
 
127
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
128
- class Representation < Google::Apis::Core::JsonRepresentation; end
129
-
130
- include Google::Apis::Core::JsonObjectSupport
131
- end
132
-
133
127
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
134
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
129
 
@@ -396,10 +390,10 @@ module Google
396
390
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
397
391
  # @private
398
392
  class Representation < Google::Apis::Core::JsonRepresentation
399
- collection :exclusions, as: 'exclusions', class: Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
400
-
401
393
  property :location, as: 'location'
402
394
  property :node_id, as: 'nodeId'
395
+ property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
396
+
403
397
  end
404
398
  end
405
399
 
@@ -427,21 +421,9 @@ module Google
427
421
  end
428
422
  end
429
423
 
430
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
431
- # @private
432
- class Representation < Google::Apis::Core::JsonRepresentation
433
- property :duration, as: 'duration'
434
- property :reason, as: 'reason'
435
- property :sli_name, as: 'sliName'
436
- property :start_time, as: 'startTime'
437
- end
438
- end
439
-
440
424
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
441
425
  # @private
442
426
  class Representation < Google::Apis::Core::JsonRepresentation
443
- collection :exclusions, as: 'exclusions', class: Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
444
-
445
427
  collection :nodes, as: 'nodes', class: Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
446
428
 
447
429
  property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::MemcacheV1beta2::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta2'
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-memcache_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.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-06-28 00:00:00.000000000 Z
11
+ date: 2021-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-memcache_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.13.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-memcache_v1beta2
63
63
  post_install_message:
64
64
  rdoc_options: []