google-apis-memcache_v1 0.11.0 → 0.12.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: 1396e4d2eddaf495205e68e82d43f8da4a57e70c1e0d820f76c18cb0d7a3eec8
4
- data.tar.gz: 4a19e74eaac0463bfb9aa0840b4ec4dade3edfcf102bc449b19da47db8750511
3
+ metadata.gz: 4e9eeeead16e75f3ca9e1cc4003030a89d1547e1f5652326f99480c006cca2dd
4
+ data.tar.gz: 84bf95687a54e1e77cfa91277547146df966ea0606f0b0a03f8d65970c3fc0f2
5
5
  SHA512:
6
- metadata.gz: bc2382d7dd52b63cd75a9058cd2fed96c399215338be6c20bf68c9f9d3938aed0f39fad2a26cefc6c49847018d96fa16b635163b9e30a45fe7baa6df0eabbb01
7
- data.tar.gz: 12f03d45eb5cbe0ecb713be1bf46ed1b8a146f78801285fb483e21df4c83b7bfe4ce9d413980e2f6c0ebbce4f946df0e12c47efdb37721ed48a7efd24107031e
6
+ metadata.gz: de3223553283af0d4cfada75ac26b4e0afb457e5ca7a9f3f4a30c8bbcb91677c3bdfa2e19466b42e3151fe0180e6e4976339b0cd3bf2664eb1ddce8724135d89
7
+ data.tar.gz: 450252edd22419a605a56421d2bb3c0d2f6303c80726df0c55a6f5349626356d5b96755b25cc6fbab48ea7b6cbc068cd1d691057db0ff118285917c9949d683b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-memcache_v1
2
2
 
3
+ ### v0.12.0 (2021-09-12)
4
+
5
+ * Regenerated from discovery document revision 20210907
6
+
3
7
  ### v0.11.0 (2021-09-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20210810
@@ -514,14 +514,6 @@ module Google
514
514
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
515
515
  include Google::Apis::Core::Hashable
516
516
 
517
- # By default node is eligible if instance is eligible. But individual node might
518
- # be excluded from SLO by adding entry here. For semantic see SloMetadata.
519
- # exclusions. If both instance and node level exclusions are present for time
520
- # period, the node level's reason will be reported by Eligibility Exporter.
521
- # Corresponds to the JSON property `exclusions`
522
- # @return [Array<Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
523
- attr_accessor :exclusions
524
-
525
517
  # The location of the node, if different from instance location.
526
518
  # Corresponds to the JSON property `location`
527
519
  # @return [String]
@@ -543,7 +535,6 @@ module Google
543
535
 
544
536
  # Update properties of this object
545
537
  def update!(**args)
546
- @exclusions = args[:exclusions] if args.key?(:exclusions)
547
538
  @location = args[:location] if args.key?(:location)
548
539
  @node_id = args[:node_id] if args.key?(:node_id)
549
540
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
@@ -638,71 +629,11 @@ module Google
638
629
  end
639
630
  end
640
631
 
641
- # SloExclusion represents an exclusion in SLI calculation applies to all SLOs.
642
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
643
- include Google::Apis::Core::Hashable
644
-
645
- # Exclusion duration. No restrictions on the possible values. When an ongoing
646
- # operation is taking longer than initially expected, an existing entry in the
647
- # exclusion list can be updated by extending the duration. This is supported by
648
- # the subsystem exporting eligibility data as long as such extension is
649
- # committed at least 10 minutes before the original exclusion expiration -
650
- # otherwise it is possible that there will be "gaps" in the exclusion
651
- # application in the exported timeseries.
652
- # Corresponds to the JSON property `duration`
653
- # @return [String]
654
- attr_accessor :duration
655
-
656
- # Human-readable reason for the exclusion. This should be a static string (e.g. "
657
- # Disruptive update in progress") and should not contain dynamically generated
658
- # data (e.g. instance name). Can be left empty.
659
- # Corresponds to the JSON property `reason`
660
- # @return [String]
661
- attr_accessor :reason
662
-
663
- # Name of an SLI that this exclusion applies to. Can be left empty, signaling
664
- # that the instance should be excluded from all SLIs.
665
- # Corresponds to the JSON property `sliName`
666
- # @return [String]
667
- attr_accessor :sli_name
668
-
669
- # Start time of the exclusion. No alignment (e.g. to a full minute) needed.
670
- # Corresponds to the JSON property `startTime`
671
- # @return [String]
672
- attr_accessor :start_time
673
-
674
- def initialize(**args)
675
- update!(**args)
676
- end
677
-
678
- # Update properties of this object
679
- def update!(**args)
680
- @duration = args[:duration] if args.key?(:duration)
681
- @reason = args[:reason] if args.key?(:reason)
682
- @sli_name = args[:sli_name] if args.key?(:sli_name)
683
- @start_time = args[:start_time] if args.key?(:start_time)
684
- end
685
- end
686
-
687
632
  # SloMetadata contains resources required for proper SLO classification of the
688
633
  # instance.
689
634
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
690
635
  include Google::Apis::Core::Hashable
691
636
 
692
- # List of SLO exclusion windows. When multiple entries in the list match (
693
- # matching the exclusion time-window against current time point) the exclusion
694
- # reason used in the first matching entry will be published. It is not needed to
695
- # include expired exclusion in this list, as only the currently applicable
696
- # exclusions are taken into account by the eligibility exporting subsystem (the
697
- # historical state of exclusions will be reflected in the historically produced
698
- # timeseries regardless of the current state). This field can be used to mark
699
- # the instance as temporary ineligible for the purpose of SLO calculation. For
700
- # permanent instance SLO exclusion, use of custom instance eligibility is
701
- # recommended. See 'eligibility' field below.
702
- # Corresponds to the JSON property `exclusions`
703
- # @return [Array<Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
704
- attr_accessor :exclusions
705
-
706
637
  # Optional. List of nodes. Some producers need to use per-node metadata to
707
638
  # calculate SLO. This field allows such producers to publish per-node SLO meta
708
639
  # data, which will be consumed by SSA Eligibility Exporter and published in the
@@ -729,7 +660,6 @@ module Google
729
660
 
730
661
  # Update properties of this object
731
662
  def update!(**args)
732
- @exclusions = args[:exclusions] if args.key?(:exclusions)
733
663
  @nodes = args[:nodes] if args.key?(:nodes)
734
664
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
735
665
  @tier = args[:tier] if args.key?(:tier)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MemcacheV1
18
18
  # Version of the google-apis-memcache_v1 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.12.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 = "20210810"
25
+ REVISION = "20210907"
26
26
  end
27
27
  end
28
28
  end
@@ -118,12 +118,6 @@ module Google
118
118
  include Google::Apis::Core::JsonObjectSupport
119
119
  end
120
120
 
121
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
122
- class Representation < Google::Apis::Core::JsonRepresentation; end
123
-
124
- include Google::Apis::Core::JsonObjectSupport
125
- end
126
-
127
121
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
128
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
123
 
@@ -382,8 +376,6 @@ module Google
382
376
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
383
377
  # @private
384
378
  class Representation < Google::Apis::Core::JsonRepresentation
385
- collection :exclusions, as: 'exclusions', class: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
386
-
387
379
  property :location, as: 'location'
388
380
  property :node_id, as: 'nodeId'
389
381
  property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
@@ -415,21 +407,9 @@ module Google
415
407
  end
416
408
  end
417
409
 
418
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
419
- # @private
420
- class Representation < Google::Apis::Core::JsonRepresentation
421
- property :duration, as: 'duration'
422
- property :reason, as: 'reason'
423
- property :sli_name, as: 'sliName'
424
- property :start_time, as: 'startTime'
425
- end
426
- end
427
-
428
410
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
429
411
  # @private
430
412
  class Representation < Google::Apis::Core::JsonRepresentation
431
- collection :exclusions, as: 'exclusions', class: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
432
-
433
413
  collection :nodes, as: 'nodes', class: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
434
414
 
435
415
  property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1'
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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.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-09-06 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
@@ -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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1/v0.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1/v0.12.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-memcache_v1
63
63
  post_install_message:
64
64
  rdoc_options: []