google-apis-managedidentities_v1 0.1.0 → 0.6.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: eb7c3e318158f4bcfaa592f5ff6014628c48d7027d99346d4d06b92e681198a1
4
- data.tar.gz: 152af4ae5ab89c25eac9d7c42afe5f08253d511b38387be803a4cb72ab6806b5
3
+ metadata.gz: 421487a266fd638ebdf82291c982be37fd8357d2d2c1dabf316ef6d3a064cebd
4
+ data.tar.gz: 419e59ccfde8f96625c3d19dd16508e598ba21b2f80dfbb340c6290ee5a94926
5
5
  SHA512:
6
- metadata.gz: 04363da0fc4e3bdba6b33a9ce4fe552a6935f5e564b46f8e5dca2dfd416c6df899d42ed92e30aebd43fb4553927804ac6a4dff44aa8935637bb64b017e31d12c
7
- data.tar.gz: bd59f6d5e39148b5d85c6d6a7070a64ac9382f8f36fe37136ada442a14809eedf0cc02b61c76345680c24d90b821e2987d37ecdc31aaf07df58dc68b58708c6b
6
+ metadata.gz: c8a7acc7576db618c55b914def2fcbeeeb093d30ef86907fb066fa704a9ff849306e2cb03b01a7eb18c35d123a131a1bc93ede2843373156ea6423d50d3c8c97
7
+ data.tar.gz: a1ac3b652d24e02cc9b7b962201d08ca56c3e4cb699609845c8c43cbd48c8d366eb85729606f131bfa5bdf55460155a1cd0fc65fb123616a0bf065125be719ca
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-managedidentities_v1
2
2
 
3
+ ### v0.6.0 (2021-03-26)
4
+
5
+ * Regenerated from discovery document revision 20210324
6
+
7
+ ### v0.5.0 (2021-03-12)
8
+
9
+ * Regenerated from discovery document revision 20210305
10
+ * Regenerated using generator version 0.2.0
11
+
12
+ ### v0.4.0 (2021-03-04)
13
+
14
+ * Unspecified changes
15
+
16
+ ### v0.3.0 (2021-02-13)
17
+
18
+ * Regenerated from discovery document revision 20210209
19
+ * Regenerated using generator version 0.1.2
20
+
21
+ ### v0.2.0 (2021-01-10)
22
+
23
+ * Regenerated from discovery document revision 20201222
24
+
3
25
  ### v0.1.0 (2021-01-07)
4
26
 
5
27
  * Regenerated using generator version 0.1.1
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1'
32
32
 
33
- # View and manage your data across Google Cloud Platform services
33
+ # See, edit, configure, and delete your Google Cloud Platform data
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
@@ -725,9 +725,9 @@ module Google
725
725
  class GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule
726
726
  include Google::Apis::Core::Hashable
727
727
 
728
- # Can this scheduled update be rescheduled? By default, it's true and API needs
729
- # to do explicitly check whether it's set, if it's set as false explicitly, it's
730
- # false
728
+ # This field is deprecated, and will be always set to true since reschedule can
729
+ # happen multiple times now. This field should not be removed until all service
730
+ # producers remove this for their customers.
731
731
  # Corresponds to the JSON property `canReschedule`
732
732
  # @return [Boolean]
733
733
  attr_accessor :can_reschedule
@@ -745,6 +745,14 @@ module Google
745
745
  # @return [String]
746
746
  attr_accessor :rollout_management_policy
747
747
 
748
+ # schedule_deadline_time is the time deadline any schedule start time cannot go
749
+ # beyond, including reschedule. It's normally the initial schedule start time
750
+ # plus maintenance window length (1 day or 1 week). Maintenance cannot be
751
+ # scheduled to start beyond this deadline.
752
+ # Corresponds to the JSON property `scheduleDeadlineTime`
753
+ # @return [String]
754
+ attr_accessor :schedule_deadline_time
755
+
748
756
  # The scheduled start time for the maintenance.
749
757
  # Corresponds to the JSON property `startTime`
750
758
  # @return [String]
@@ -759,6 +767,7 @@ module Google
759
767
  @can_reschedule = args[:can_reschedule] if args.key?(:can_reschedule)
760
768
  @end_time = args[:end_time] if args.key?(:end_time)
761
769
  @rollout_management_policy = args[:rollout_management_policy] if args.key?(:rollout_management_policy)
770
+ @schedule_deadline_time = args[:schedule_deadline_time] if args.key?(:schedule_deadline_time)
762
771
  @start_time = args[:start_time] if args.key?(:start_time)
763
772
  end
764
773
  end
@@ -776,6 +785,12 @@ module Google
776
785
  attr_accessor :exclude
777
786
  alias_method :exclude?, :exclude
778
787
 
788
+ # Optional. If the update call is triggered from rollback, set the value as true.
789
+ # Corresponds to the JSON property `isRollback`
790
+ # @return [Boolean]
791
+ attr_accessor :is_rollback
792
+ alias_method :is_rollback?, :is_rollback
793
+
779
794
  # Optional. The MaintenancePolicies that have been attached to the instance. The
780
795
  # key must be of the type name of the oneof policy name defined in
781
796
  # MaintenancePolicy, and the embedded policy must define the same policy type.
@@ -793,6 +808,7 @@ module Google
793
808
  # Update properties of this object
794
809
  def update!(**args)
795
810
  @exclude = args[:exclude] if args.key?(:exclude)
811
+ @is_rollback = args[:is_rollback] if args.key?(:is_rollback)
796
812
  @maintenance_policies = args[:maintenance_policies] if args.key?(:maintenance_policies)
797
813
  end
798
814
  end
@@ -834,6 +850,35 @@ module Google
834
850
  end
835
851
  end
836
852
 
853
+ # PerSliSloEligibility is a mapping from an SLI name to eligibility.
854
+ class GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility
855
+ include Google::Apis::Core::Hashable
856
+
857
+ # An entry in the eligibilities map specifies an eligibility for a particular
858
+ # SLI for the given instance. The SLI key in the name must be a valid SLI name
859
+ # specified in the Eligibility Exporter binary flags otherwise an error will be
860
+ # emitted by Eligibility Exporter and the oncaller will be alerted. If an SLI
861
+ # has been defined in the binary flags but the eligibilities map does not
862
+ # contain it, the corresponding SLI time series will not be emitted by the
863
+ # Eligibility Exporter. This ensures a smooth rollout and compatibility between
864
+ # the data produced by different versions of the Eligibility Exporters. If
865
+ # eligibilities map contains a key for an SLI which has not been declared in the
866
+ # binary flags, there will be an error message emitted in the Eligibility
867
+ # Exporter log and the metric for the SLI in question will not be emitted.
868
+ # Corresponds to the JSON property `eligibilities`
869
+ # @return [Hash<String,Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility>]
870
+ attr_accessor :eligibilities
871
+
872
+ def initialize(**args)
873
+ update!(**args)
874
+ end
875
+
876
+ # Update properties of this object
877
+ def update!(**args)
878
+ @eligibilities = args[:eligibilities] if args.key?(:eligibilities)
879
+ end
880
+ end
881
+
837
882
  # Describes provisioned dataplane resources.
838
883
  class GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource
839
884
  include Google::Apis::Core::Hashable
@@ -916,8 +961,7 @@ module Google
916
961
  attr_accessor :reason
917
962
 
918
963
  # Name of an SLI that this exclusion applies to. Can be left empty, signaling
919
- # that the instance should be excluded from all SLIs defined in the service SLO
920
- # configuration.
964
+ # that the instance should be excluded from all SLIs.
921
965
  # Corresponds to the JSON property `sliName`
922
966
  # @return [String]
923
967
  attr_accessor :sli_name
@@ -974,6 +1018,11 @@ module Google
974
1018
  # @return [Array<Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata>]
975
1019
  attr_accessor :nodes
976
1020
 
1021
+ # PerSliSloEligibility is a mapping from an SLI name to eligibility.
1022
+ # Corresponds to the JSON property `perSliEligibility`
1023
+ # @return [Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility]
1024
+ attr_accessor :per_sli_eligibility
1025
+
977
1026
  # Name of the SLO tier the Instance belongs to. This name will be expected to
978
1027
  # match the tiers specified in the service SLO configuration. Field is mandatory
979
1028
  # and must not be empty.
@@ -990,6 +1039,7 @@ module Google
990
1039
  @eligibility = args[:eligibility] if args.key?(:eligibility)
991
1040
  @exclusions = args[:exclusions] if args.key?(:exclusions)
992
1041
  @nodes = args[:nodes] if args.key?(:nodes)
1042
+ @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
993
1043
  @tier = args[:tier] if args.key?(:tier)
994
1044
  end
995
1045
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedidentitiesV1
18
18
  # Version of the google-apis-managedidentities_v1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20201113"
25
+ REVISION = "20210324"
26
26
  end
27
27
  end
28
28
  end
@@ -124,6 +124,12 @@ module Google
124
124
  include Google::Apis::Core::JsonObjectSupport
125
125
  end
126
126
 
127
+ class GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
127
133
  class GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource
128
134
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
135
 
@@ -444,6 +450,7 @@ module Google
444
450
  property :can_reschedule, as: 'canReschedule'
445
451
  property :end_time, as: 'endTime'
446
452
  property :rollout_management_policy, as: 'rolloutManagementPolicy'
453
+ property :schedule_deadline_time, as: 'scheduleDeadlineTime'
447
454
  property :start_time, as: 'startTime'
448
455
  end
449
456
  end
@@ -452,6 +459,7 @@ module Google
452
459
  # @private
453
460
  class Representation < Google::Apis::Core::JsonRepresentation
454
461
  property :exclude, as: 'exclude'
462
+ property :is_rollback, as: 'isRollback'
455
463
  hash :maintenance_policies, as: 'maintenancePolicies', class: Google::Apis::ManagedidentitiesV1::MaintenancePolicy, decorator: Google::Apis::ManagedidentitiesV1::MaintenancePolicy::Representation
456
464
 
457
465
  end
@@ -467,6 +475,14 @@ module Google
467
475
  end
468
476
  end
469
477
 
478
+ class GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility
479
+ # @private
480
+ class Representation < Google::Apis::Core::JsonRepresentation
481
+ hash :eligibilities, as: 'eligibilities', class: Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility, decorator: Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility::Representation
482
+
483
+ end
484
+ end
485
+
470
486
  class GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource
471
487
  # @private
472
488
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -502,6 +518,8 @@ module Google
502
518
 
503
519
  collection :nodes, as: 'nodes', class: Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
504
520
 
521
+ property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
522
+
505
523
  property :tier, as: 'tier'
506
524
  end
507
525
  end
@@ -84,11 +84,15 @@ module Google
84
84
  # @param [String] name
85
85
  # The resource that owns the locations collection, if applicable.
86
86
  # @param [String] filter
87
- # The standard list filter.
87
+ # A filter to narrow down results to a preferred subset. The filtering language
88
+ # accepts strings like "displayName=tokyo", and is documented in more detail in [
89
+ # AIP-160](https://google.aip.dev/160).
88
90
  # @param [Fixnum] page_size
89
- # The standard list page size.
91
+ # The maximum number of results to return. If not set, the service will select a
92
+ # default.
90
93
  # @param [String] page_token
91
- # The standard list page token.
94
+ # A page token received from the `next_page_token` field in the response. Send
95
+ # that page token to receive the subsequent page.
92
96
  # @param [String] fields
93
97
  # Selector specifying which fields to include in a partial response.
94
98
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-managedidentities_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.6.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-01-08 00:00:00.000000000 Z
11
+ date: 2021-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -53,7 +53,7 @@ licenses:
53
53
  metadata:
54
54
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
55
55
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1/CHANGELOG.md
56
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1/v0.1.0
56
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1/v0.6.0
57
57
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1
58
58
  post_install_message:
59
59
  rdoc_options: []
@@ -63,14 +63,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
- version: '2.4'
66
+ version: '2.5'
67
67
  required_rubygems_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
71
  version: '0'
72
72
  requirements: []
73
- rubygems_version: 3.1.4
73
+ rubygems_version: 3.2.13
74
74
  signing_key:
75
75
  specification_version: 4
76
76
  summary: Simple REST client for Managed Service for Microsoft Active Directory API