google-apis-iam_v1 0.9.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/iam_v1/classes.rb +19 -0
- data/lib/google/apis/iam_v1/gem_version.rb +2 -2
- data/lib/google/apis/iam_v1/representations.rb +13 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '08d9351ea7d821e05c01a520cc91eba1b4fd72c6fa821eb0e1f9c97c331b48d3'
|
4
|
+
data.tar.gz: c04d62b4107861964eaace8c6f2eed2f9db7352013607fe1d2d4a213e1233287
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c81ec029b3fe3860d701dfaa13518bbd6b3d3b78cd2b978b800fde7339f819af38eb16f780d749f3ead954ea521e1c178c46c203d48ed645691cddda682c029
|
7
|
+
data.tar.gz: b4fc45fd78b2f64e24e4efebe286c1877d61cdf063e5f2543485ec997e662206dabfb622b953f94e8b1793bfab328aaf970fe02a4302222dc3c5932058a9d342
|
data/CHANGELOG.md
CHANGED
@@ -1057,6 +1057,25 @@ module Google
|
|
1057
1057
|
end
|
1058
1058
|
end
|
1059
1059
|
|
1060
|
+
# Metadata for long-running Policy operations.
|
1061
|
+
class PolicyOperationMetadata
|
1062
|
+
include Google::Apis::Core::Hashable
|
1063
|
+
|
1064
|
+
# Timestamp when the google.longrunning.Operation was created.
|
1065
|
+
# Corresponds to the JSON property `createTime`
|
1066
|
+
# @return [String]
|
1067
|
+
attr_accessor :create_time
|
1068
|
+
|
1069
|
+
def initialize(**args)
|
1070
|
+
update!(**args)
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
# Update properties of this object
|
1074
|
+
def update!(**args)
|
1075
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1076
|
+
end
|
1077
|
+
end
|
1078
|
+
|
1060
1079
|
# A request to get the list of auditable services for a resource.
|
1061
1080
|
class QueryAuditableServicesRequest
|
1062
1081
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IamV1
|
18
18
|
# Version of the google-apis-iam_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.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 = "
|
25
|
+
REVISION = "20210728"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -202,6 +202,12 @@ module Google
|
|
202
202
|
include Google::Apis::Core::JsonObjectSupport
|
203
203
|
end
|
204
204
|
|
205
|
+
class PolicyOperationMetadata
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
205
211
|
class QueryAuditableServicesRequest
|
206
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
213
|
|
@@ -618,6 +624,13 @@ module Google
|
|
618
624
|
end
|
619
625
|
end
|
620
626
|
|
627
|
+
class PolicyOperationMetadata
|
628
|
+
# @private
|
629
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
630
|
+
property :create_time, as: 'createTime'
|
631
|
+
end
|
632
|
+
end
|
633
|
+
|
621
634
|
class QueryAuditableServicesRequest
|
622
635
|
# @private
|
623
636
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-iam_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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-08-
|
11
|
+
date: 2021-08-09 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-iam_v1/CHANGELOG.md
|
62
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.
|
62
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.10.0
|
63
63
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-iam_v1
|
64
64
|
post_install_message:
|
65
65
|
rdoc_options: []
|