google-apis-managedidentities_v1 0.2.0 → 0.7.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/google/apis/managedidentities_v1.rb +1 -1
- data/lib/google/apis/managedidentities_v1/classes.rb +48 -8
- data/lib/google/apis/managedidentities_v1/gem_version.rb +3 -3
- data/lib/google/apis/managedidentities_v1/representations.rb +17 -0
- data/lib/google/apis/managedidentities_v1/service.rb +7 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a43fe16e23d701dba1ad06ad928d256b0bcf24f0bb549bc12d28fa4a5d913541
|
4
|
+
data.tar.gz: 73e674f76cb7c4a8b1ccf09114076b8abce123d3382b33975259bdf130542dce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6ca33cdaa6736d25ff555c704c64267bab25434a0a7cf49177d70b3e574ff82c085b650d72880ca68b4301a8cbdee91372b0312b05aee45a532bba685b43e90
|
7
|
+
data.tar.gz: e7620a449799d4f8341faef395599063c5a1285dd65910ec747529813a2f851c9d3008a8fe6fcc14482388afb7e240aa0b6a11cbbe297581d58184a127286034
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-managedidentities_v1
|
2
2
|
|
3
|
+
### v0.7.0 (2021-05-19)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.6.0 (2021-03-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210324
|
10
|
+
|
11
|
+
### v0.5.0 (2021-03-12)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210305
|
14
|
+
* Regenerated using generator version 0.2.0
|
15
|
+
|
16
|
+
### v0.4.0 (2021-03-04)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
20
|
+
### v0.3.0 (2021-02-13)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210209
|
23
|
+
* Regenerated using generator version 0.1.2
|
24
|
+
|
3
25
|
### v0.2.0 (2021-01-10)
|
4
26
|
|
5
27
|
* Regenerated from discovery document revision 20201222
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1'
|
32
32
|
|
33
|
-
#
|
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
|
-
#
|
729
|
-
#
|
730
|
-
#
|
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
|
@@ -747,9 +747,8 @@ module Google
|
|
747
747
|
|
748
748
|
# schedule_deadline_time is the time deadline any schedule start time cannot go
|
749
749
|
# beyond, including reschedule. It's normally the initial schedule start time
|
750
|
-
# plus
|
751
|
-
#
|
752
|
-
# time cannot go beyond this deadline.
|
750
|
+
# plus maintenance window length (1 day or 1 week). Maintenance cannot be
|
751
|
+
# scheduled to start beyond this deadline.
|
753
752
|
# Corresponds to the JSON property `scheduleDeadlineTime`
|
754
753
|
# @return [String]
|
755
754
|
attr_accessor :schedule_deadline_time
|
@@ -786,6 +785,12 @@ module Google
|
|
786
785
|
attr_accessor :exclude
|
787
786
|
alias_method :exclude?, :exclude
|
788
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
|
+
|
789
794
|
# Optional. The MaintenancePolicies that have been attached to the instance. The
|
790
795
|
# key must be of the type name of the oneof policy name defined in
|
791
796
|
# MaintenancePolicy, and the embedded policy must define the same policy type.
|
@@ -803,6 +808,7 @@ module Google
|
|
803
808
|
# Update properties of this object
|
804
809
|
def update!(**args)
|
805
810
|
@exclude = args[:exclude] if args.key?(:exclude)
|
811
|
+
@is_rollback = args[:is_rollback] if args.key?(:is_rollback)
|
806
812
|
@maintenance_policies = args[:maintenance_policies] if args.key?(:maintenance_policies)
|
807
813
|
end
|
808
814
|
end
|
@@ -844,6 +850,35 @@ module Google
|
|
844
850
|
end
|
845
851
|
end
|
846
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
|
+
|
847
882
|
# Describes provisioned dataplane resources.
|
848
883
|
class GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource
|
849
884
|
include Google::Apis::Core::Hashable
|
@@ -926,8 +961,7 @@ module Google
|
|
926
961
|
attr_accessor :reason
|
927
962
|
|
928
963
|
# Name of an SLI that this exclusion applies to. Can be left empty, signaling
|
929
|
-
# that the instance should be excluded from all SLIs
|
930
|
-
# configuration.
|
964
|
+
# that the instance should be excluded from all SLIs.
|
931
965
|
# Corresponds to the JSON property `sliName`
|
932
966
|
# @return [String]
|
933
967
|
attr_accessor :sli_name
|
@@ -984,6 +1018,11 @@ module Google
|
|
984
1018
|
# @return [Array<Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata>]
|
985
1019
|
attr_accessor :nodes
|
986
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
|
+
|
987
1026
|
# Name of the SLO tier the Instance belongs to. This name will be expected to
|
988
1027
|
# match the tiers specified in the service SLO configuration. Field is mandatory
|
989
1028
|
# and must not be empty.
|
@@ -1000,6 +1039,7 @@ module Google
|
|
1000
1039
|
@eligibility = args[:eligibility] if args.key?(:eligibility)
|
1001
1040
|
@exclusions = args[:exclusions] if args.key?(:exclusions)
|
1002
1041
|
@nodes = args[:nodes] if args.key?(:nodes)
|
1042
|
+
@per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
|
1003
1043
|
@tier = args[:tier] if args.key?(:tier)
|
1004
1044
|
end
|
1005
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.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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
|
|
@@ -453,6 +459,7 @@ module Google
|
|
453
459
|
# @private
|
454
460
|
class Representation < Google::Apis::Core::JsonRepresentation
|
455
461
|
property :exclude, as: 'exclude'
|
462
|
+
property :is_rollback, as: 'isRollback'
|
456
463
|
hash :maintenance_policies, as: 'maintenancePolicies', class: Google::Apis::ManagedidentitiesV1::MaintenancePolicy, decorator: Google::Apis::ManagedidentitiesV1::MaintenancePolicy::Representation
|
457
464
|
|
458
465
|
end
|
@@ -468,6 +475,14 @@ module Google
|
|
468
475
|
end
|
469
476
|
end
|
470
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
|
+
|
471
486
|
class GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource
|
472
487
|
# @private
|
473
488
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -503,6 +518,8 @@ module Google
|
|
503
518
|
|
504
519
|
collection :nodes, as: 'nodes', class: Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
|
505
520
|
|
521
|
+
property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
|
522
|
+
|
506
523
|
property :tier, as: 'tier'
|
507
524
|
end
|
508
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
|
-
#
|
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
|
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
|
-
#
|
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.
|
4
|
+
version: 0.7.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-
|
11
|
+
date: 2021-05-24 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.
|
56
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1/v0.7.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.
|
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.2.
|
73
|
+
rubygems_version: 3.2.17
|
74
74
|
signing_key:
|
75
75
|
specification_version: 4
|
76
76
|
summary: Simple REST client for Managed Service for Microsoft Active Directory API
|