google-apis-cloudidentity_v1beta1 0.7.0 → 0.11.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 +18 -0
- data/lib/google/apis/cloudidentity_v1beta1/classes.rb +50 -1
- data/lib/google/apis/cloudidentity_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/cloudidentity_v1beta1/representations.rb +18 -0
- data/lib/google/apis/cloudidentity_v1beta1/service.rb +5 -4
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c614ee81d9eda9dfe59e4d75f66b77c7222be266e3881c819cd0a939e930e0bd
|
4
|
+
data.tar.gz: 11dbb19841bafbf4a4d49763e2f25378e35fc320344c7dde49de4b9521f407bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3fef13171efe51c5f09899f8afbc3b669a31262380d4ca35e92926b1a27ebd72dbfc7d7d45ff94d44255e63d40f78bfba97afec3b75d4348c9b03f0f1764b3b
|
7
|
+
data.tar.gz: 28d82701880222c76605ed5b486f4a3f487bb7487c19b2a3fc15eb32550ae8b890e485d07e0b7c57f75fcf446387ba9d60cba2c4bd90824b4463e442259df3b2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# Release history for google-apis-cloudidentity_v1beta1
|
2
2
|
|
3
|
+
### v0.11.0 (2021-07-14)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210713
|
6
|
+
|
7
|
+
### v0.10.0 (2021-06-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210629
|
10
|
+
* Regenerated using generator version 0.4.0
|
11
|
+
|
12
|
+
### v0.9.0 (2021-06-24)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210623
|
15
|
+
|
16
|
+
### v0.8.0 (2021-06-18)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210614
|
19
|
+
* Regenerated using generator version 0.3.0
|
20
|
+
|
3
21
|
### v0.7.0 (2021-05-19)
|
4
22
|
|
5
23
|
* Unspecified changes
|
@@ -752,7 +752,7 @@ module Google
|
|
752
752
|
# represents a Google-managed entity such as a Google user or a Google Group. If
|
753
753
|
# specified, the `EntityKey` represents an external-identity-mapped group. The
|
754
754
|
# namespace must correspond to an identity source created in Admin Console and
|
755
|
-
# must be in the form of `identitysources/`identity_source_id
|
755
|
+
# must be in the form of `identitysources/`identity_source_id``.
|
756
756
|
# Corresponds to the JSON property `namespace`
|
757
757
|
# @return [String]
|
758
758
|
attr_accessor :namespace
|
@@ -1456,6 +1456,11 @@ module Google
|
|
1456
1456
|
# @return [String]
|
1457
1457
|
attr_accessor :parent
|
1458
1458
|
|
1459
|
+
# Optional. The POSIX groups associated with the `Group`.
|
1460
|
+
# Corresponds to the JSON property `posixGroups`
|
1461
|
+
# @return [Array<Google::Apis::CloudidentityV1beta1::PosixGroup>]
|
1462
|
+
attr_accessor :posix_groups
|
1463
|
+
|
1459
1464
|
# Output only. The time when the `Group` was last updated.
|
1460
1465
|
# Corresponds to the JSON property `updateTime`
|
1461
1466
|
# @return [String]
|
@@ -1476,6 +1481,7 @@ module Google
|
|
1476
1481
|
@labels = args[:labels] if args.key?(:labels)
|
1477
1482
|
@name = args[:name] if args.key?(:name)
|
1478
1483
|
@parent = args[:parent] if args.key?(:parent)
|
1484
|
+
@posix_groups = args[:posix_groups] if args.key?(:posix_groups)
|
1479
1485
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1480
1486
|
end
|
1481
1487
|
end
|
@@ -2065,6 +2071,38 @@ module Google
|
|
2065
2071
|
end
|
2066
2072
|
end
|
2067
2073
|
|
2074
|
+
# POSIX Group definition to represent a group in a POSIX compliant system.
|
2075
|
+
class PosixGroup
|
2076
|
+
include Google::Apis::Core::Hashable
|
2077
|
+
|
2078
|
+
# GID of the POSIX group.
|
2079
|
+
# Corresponds to the JSON property `gid`
|
2080
|
+
# @return [Fixnum]
|
2081
|
+
attr_accessor :gid
|
2082
|
+
|
2083
|
+
# Name of the POSIX group.
|
2084
|
+
# Corresponds to the JSON property `name`
|
2085
|
+
# @return [String]
|
2086
|
+
attr_accessor :name
|
2087
|
+
|
2088
|
+
# System identifier for which group name and gid apply to. If not specified it
|
2089
|
+
# will default to empty value.
|
2090
|
+
# Corresponds to the JSON property `systemId`
|
2091
|
+
# @return [String]
|
2092
|
+
attr_accessor :system_id
|
2093
|
+
|
2094
|
+
def initialize(**args)
|
2095
|
+
update!(**args)
|
2096
|
+
end
|
2097
|
+
|
2098
|
+
# Update properties of this object
|
2099
|
+
def update!(**args)
|
2100
|
+
@gid = args[:gid] if args.key?(:gid)
|
2101
|
+
@name = args[:name] if args.key?(:name)
|
2102
|
+
@system_id = args[:system_id] if args.key?(:system_id)
|
2103
|
+
end
|
2104
|
+
end
|
2105
|
+
|
2068
2106
|
# The response message for GroupsService.SearchGroups.
|
2069
2107
|
class SearchGroupsResponse
|
2070
2108
|
include Google::Apis::Core::Hashable
|
@@ -2290,12 +2328,23 @@ module Google
|
|
2290
2328
|
class WipeDeviceRequest
|
2291
2329
|
include Google::Apis::Core::Hashable
|
2292
2330
|
|
2331
|
+
# Optional. Specifies if a user is able to factory reset a device after a Device
|
2332
|
+
# Wipe. On iOS, this is called "Activation Lock", while on Android, this is
|
2333
|
+
# known as "Factory Reset Protection". If true, this protection will be removed
|
2334
|
+
# from the device, so that a user can successfully factory reset. If false, the
|
2335
|
+
# setting is untouched on the device.
|
2336
|
+
# Corresponds to the JSON property `removeResetLock`
|
2337
|
+
# @return [Boolean]
|
2338
|
+
attr_accessor :remove_reset_lock
|
2339
|
+
alias_method :remove_reset_lock?, :remove_reset_lock
|
2340
|
+
|
2293
2341
|
def initialize(**args)
|
2294
2342
|
update!(**args)
|
2295
2343
|
end
|
2296
2344
|
|
2297
2345
|
# Update properties of this object
|
2298
2346
|
def update!(**args)
|
2347
|
+
@remove_reset_lock = args[:remove_reset_lock] if args.key?(:remove_reset_lock)
|
2299
2348
|
end
|
2300
2349
|
end
|
2301
2350
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudidentityV1beta1
|
18
18
|
# Version of the google-apis-cloudidentity_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210713"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -334,6 +334,12 @@ module Google
|
|
334
334
|
include Google::Apis::Core::JsonObjectSupport
|
335
335
|
end
|
336
336
|
|
337
|
+
class PosixGroup
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
337
343
|
class SearchGroupsResponse
|
338
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
345
|
|
@@ -775,6 +781,8 @@ module Google
|
|
775
781
|
hash :labels, as: 'labels'
|
776
782
|
property :name, as: 'name'
|
777
783
|
property :parent, as: 'parent'
|
784
|
+
collection :posix_groups, as: 'posixGroups', class: Google::Apis::CloudidentityV1beta1::PosixGroup, decorator: Google::Apis::CloudidentityV1beta1::PosixGroup::Representation
|
785
|
+
|
778
786
|
property :update_time, as: 'updateTime'
|
779
787
|
end
|
780
788
|
end
|
@@ -954,6 +962,15 @@ module Google
|
|
954
962
|
end
|
955
963
|
end
|
956
964
|
|
965
|
+
class PosixGroup
|
966
|
+
# @private
|
967
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
968
|
+
property :gid, :numeric_string => true, as: 'gid'
|
969
|
+
property :name, as: 'name'
|
970
|
+
property :system_id, as: 'systemId'
|
971
|
+
end
|
972
|
+
end
|
973
|
+
|
957
974
|
class SearchGroupsResponse
|
958
975
|
# @private
|
959
976
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1025,6 +1042,7 @@ module Google
|
|
1025
1042
|
class WipeDeviceRequest
|
1026
1043
|
# @private
|
1027
1044
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1045
|
+
property :remove_reset_lock, as: 'removeResetLock'
|
1028
1046
|
end
|
1029
1047
|
end
|
1030
1048
|
|
@@ -1058,7 +1058,7 @@ module Google
|
|
1058
1058
|
# represents a Google-managed entity such as a Google user or a Google Group. If
|
1059
1059
|
# specified, the `EntityKey` represents an external-identity-mapped group. The
|
1060
1060
|
# namespace must correspond to an identity source created in Admin Console and
|
1061
|
-
# must be in the form of `identitysources/`identity_source_id
|
1061
|
+
# must be in the form of `identitysources/`identity_source_id``.
|
1062
1062
|
# @param [String] fields
|
1063
1063
|
# Selector specifying which fields to include in a partial response.
|
1064
1064
|
# @param [String] quota_user
|
@@ -1093,8 +1093,9 @@ module Google
|
|
1093
1093
|
# resource_names) of the `Group`. Shall be of the form `groups/`group_id``.
|
1094
1094
|
# @param [Google::Apis::CloudidentityV1beta1::Group] group_object
|
1095
1095
|
# @param [String] update_mask
|
1096
|
-
# Required. The
|
1097
|
-
#
|
1096
|
+
# Required. The names of fields to update. May only contain the following fields:
|
1097
|
+
# `display_name`, `description`, `labels`, `dynamic_group_metadata`, `
|
1098
|
+
# posix_groups`.
|
1098
1099
|
# @param [String] fields
|
1099
1100
|
# Selector specifying which fields to include in a partial response.
|
1100
1101
|
# @param [String] quota_user
|
@@ -1426,7 +1427,7 @@ module Google
|
|
1426
1427
|
# represents a Google-managed entity such as a Google user or a Google Group. If
|
1427
1428
|
# specified, the `EntityKey` represents an external-identity-mapped group. The
|
1428
1429
|
# namespace must correspond to an identity source created in Admin Console and
|
1429
|
-
# must be in the form of `identitysources/`identity_source_id
|
1430
|
+
# must be in the form of `identitysources/`identity_source_id``.
|
1430
1431
|
# @param [String] fields
|
1431
1432
|
# Selector specifying which fields to include in a partial response.
|
1432
1433
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudidentity_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Identity API V1beta1. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudidentity_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.11.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudidentity_v1beta1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|