google-apis-cloudidentity_v1beta1 0.37.0 → 0.39.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 +8 -0
- data/lib/google/apis/cloudidentity_v1beta1/classes.rb +132 -4
- data/lib/google/apis/cloudidentity_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/cloudidentity_v1beta1/representations.rb +43 -0
- data/lib/google/apis/cloudidentity_v1beta1/service.rb +78 -16
- 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: d2571a47e577b0491ec3c809aa3cd7180259c63866a7b8b47a5d7f4d05330f4c
|
4
|
+
data.tar.gz: 8cc811f19bd2d68caa1b054b4c4cd46afb4402caf5ad9f144f1673eec655f3d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5909ddc731b9fda1ab655a6e5e1787e0d5106c0762010c9217679553b77e7e87a77907aa719d2165feaea04fc1dcb3e14d099845bfae9f2d671b0e68cc833bfb
|
7
|
+
data.tar.gz: 0207d87bbd318fb7428d02d84d216d40a04b72e5b32c1b7642ff0b296cd256648521ad2fbeb0d4a7078e3a0d370df9d3f0fa03f2da356652d094d4814f40ced7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudidentity_v1beta1
|
2
2
|
|
3
|
+
### v0.39.0 (2023-05-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230523
|
6
|
+
|
7
|
+
### v0.38.0 (2023-03-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230321
|
10
|
+
|
3
11
|
### v0.37.0 (2023-02-15)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.12.0
|
@@ -60,12 +60,24 @@ module Google
|
|
60
60
|
class AndroidAttributes
|
61
61
|
include Google::Apis::Core::Hashable
|
62
62
|
|
63
|
+
# Whether the device passes Android CTS compliance.
|
64
|
+
# Corresponds to the JSON property `ctsProfileMatch`
|
65
|
+
# @return [Boolean]
|
66
|
+
attr_accessor :cts_profile_match
|
67
|
+
alias_method :cts_profile_match?, :cts_profile_match
|
68
|
+
|
63
69
|
# Whether applications from unknown sources can be installed on device.
|
64
70
|
# Corresponds to the JSON property `enabledUnknownSources`
|
65
71
|
# @return [Boolean]
|
66
72
|
attr_accessor :enabled_unknown_sources
|
67
73
|
alias_method :enabled_unknown_sources?, :enabled_unknown_sources
|
68
74
|
|
75
|
+
# Whether any potentially harmful apps were detected on the device.
|
76
|
+
# Corresponds to the JSON property `hasPotentiallyHarmfulApps`
|
77
|
+
# @return [Boolean]
|
78
|
+
attr_accessor :has_potentially_harmful_apps
|
79
|
+
alias_method :has_potentially_harmful_apps?, :has_potentially_harmful_apps
|
80
|
+
|
69
81
|
# Whether this account is on an owner/primary profile. For phones, only true for
|
70
82
|
# owner profiles. Android 4+ devices can have secondary or restricted user
|
71
83
|
# profiles.
|
@@ -87,16 +99,32 @@ module Google
|
|
87
99
|
attr_accessor :supports_work_profile
|
88
100
|
alias_method :supports_work_profile?, :supports_work_profile
|
89
101
|
|
102
|
+
# Whether Android verified boot status is GREEN.
|
103
|
+
# Corresponds to the JSON property `verifiedBoot`
|
104
|
+
# @return [Boolean]
|
105
|
+
attr_accessor :verified_boot
|
106
|
+
alias_method :verified_boot?, :verified_boot
|
107
|
+
|
108
|
+
# Whether Google Play Protect Verify Apps is enabled.
|
109
|
+
# Corresponds to the JSON property `verifyAppsEnabled`
|
110
|
+
# @return [Boolean]
|
111
|
+
attr_accessor :verify_apps_enabled
|
112
|
+
alias_method :verify_apps_enabled?, :verify_apps_enabled
|
113
|
+
|
90
114
|
def initialize(**args)
|
91
115
|
update!(**args)
|
92
116
|
end
|
93
117
|
|
94
118
|
# Update properties of this object
|
95
119
|
def update!(**args)
|
120
|
+
@cts_profile_match = args[:cts_profile_match] if args.key?(:cts_profile_match)
|
96
121
|
@enabled_unknown_sources = args[:enabled_unknown_sources] if args.key?(:enabled_unknown_sources)
|
122
|
+
@has_potentially_harmful_apps = args[:has_potentially_harmful_apps] if args.key?(:has_potentially_harmful_apps)
|
97
123
|
@owner_profile_account = args[:owner_profile_account] if args.key?(:owner_profile_account)
|
98
124
|
@ownership_privilege = args[:ownership_privilege] if args.key?(:ownership_privilege)
|
99
125
|
@supports_work_profile = args[:supports_work_profile] if args.key?(:supports_work_profile)
|
126
|
+
@verified_boot = args[:verified_boot] if args.key?(:verified_boot)
|
127
|
+
@verify_apps_enabled = args[:verify_apps_enabled] if args.key?(:verify_apps_enabled)
|
100
128
|
end
|
101
129
|
end
|
102
130
|
|
@@ -1886,6 +1914,11 @@ module Google
|
|
1886
1914
|
class Group
|
1887
1915
|
include Google::Apis::Core::Hashable
|
1888
1916
|
|
1917
|
+
# Output only. Additional group keys associated with the Group.
|
1918
|
+
# Corresponds to the JSON property `additionalGroupKeys`
|
1919
|
+
# @return [Array<Google::Apis::CloudidentityV1beta1::EntityKey>]
|
1920
|
+
attr_accessor :additional_group_keys
|
1921
|
+
|
1889
1922
|
# Output only. The time when the `Group` was created.
|
1890
1923
|
# Corresponds to the JSON property `createTime`
|
1891
1924
|
# @return [String]
|
@@ -1962,6 +1995,7 @@ module Google
|
|
1962
1995
|
|
1963
1996
|
# Update properties of this object
|
1964
1997
|
def update!(**args)
|
1998
|
+
@additional_group_keys = args[:additional_group_keys] if args.key?(:additional_group_keys)
|
1965
1999
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1966
2000
|
@description = args[:description] if args.key?(:description)
|
1967
2001
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -2613,6 +2647,11 @@ module Google
|
|
2613
2647
|
# @return [String]
|
2614
2648
|
attr_accessor :create_time
|
2615
2649
|
|
2650
|
+
# Output only. Delivery setting associated with the membership.
|
2651
|
+
# Corresponds to the JSON property `deliverySetting`
|
2652
|
+
# @return [String]
|
2653
|
+
attr_accessor :delivery_setting
|
2654
|
+
|
2616
2655
|
# A unique identifier for an entity in the Cloud Identity Groups API. An entity
|
2617
2656
|
# can represent either a group with an optional `namespace` or a user without a `
|
2618
2657
|
# namespace`. The combination of `id` and `namespace` must be unique; however,
|
@@ -2660,6 +2699,7 @@ module Google
|
|
2660
2699
|
# Update properties of this object
|
2661
2700
|
def update!(**args)
|
2662
2701
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2702
|
+
@delivery_setting = args[:delivery_setting] if args.key?(:delivery_setting)
|
2663
2703
|
@member_key = args[:member_key] if args.key?(:member_key)
|
2664
2704
|
@name = args[:name] if args.key?(:name)
|
2665
2705
|
@preferred_member_key = args[:preferred_member_key] if args.key?(:preferred_member_key)
|
@@ -2697,6 +2737,68 @@ module Google
|
|
2697
2737
|
end
|
2698
2738
|
end
|
2699
2739
|
|
2740
|
+
# Message containing membership relation.
|
2741
|
+
class MembershipRelation
|
2742
|
+
include Google::Apis::Core::Hashable
|
2743
|
+
|
2744
|
+
# An extended description to help users determine the purpose of a `Group`.
|
2745
|
+
# Corresponds to the JSON property `description`
|
2746
|
+
# @return [String]
|
2747
|
+
attr_accessor :description
|
2748
|
+
|
2749
|
+
# The display name of the `Group`.
|
2750
|
+
# Corresponds to the JSON property `displayName`
|
2751
|
+
# @return [String]
|
2752
|
+
attr_accessor :display_name
|
2753
|
+
|
2754
|
+
# The [resource name](https://cloud.google.com/apis/design/resource_names) of
|
2755
|
+
# the `Group`. Shall be of the form `groups/`group_id``.
|
2756
|
+
# Corresponds to the JSON property `group`
|
2757
|
+
# @return [String]
|
2758
|
+
attr_accessor :group
|
2759
|
+
|
2760
|
+
# A unique identifier for an entity in the Cloud Identity Groups API. An entity
|
2761
|
+
# can represent either a group with an optional `namespace` or a user without a `
|
2762
|
+
# namespace`. The combination of `id` and `namespace` must be unique; however,
|
2763
|
+
# the same `id` can be used with different `namespace`s.
|
2764
|
+
# Corresponds to the JSON property `groupKey`
|
2765
|
+
# @return [Google::Apis::CloudidentityV1beta1::EntityKey]
|
2766
|
+
attr_accessor :group_key
|
2767
|
+
|
2768
|
+
# One or more label entries that apply to the Group. Currently supported labels
|
2769
|
+
# contain a key with an empty value.
|
2770
|
+
# Corresponds to the JSON property `labels`
|
2771
|
+
# @return [Hash<String,String>]
|
2772
|
+
attr_accessor :labels
|
2773
|
+
|
2774
|
+
# The [resource name](https://cloud.google.com/apis/design/resource_names) of
|
2775
|
+
# the `Membership`. Shall be of the form `groups/`group_id`/memberships/`
|
2776
|
+
# membership_id``.
|
2777
|
+
# Corresponds to the JSON property `membership`
|
2778
|
+
# @return [String]
|
2779
|
+
attr_accessor :membership
|
2780
|
+
|
2781
|
+
# The `MembershipRole`s that apply to the `Membership`.
|
2782
|
+
# Corresponds to the JSON property `roles`
|
2783
|
+
# @return [Array<Google::Apis::CloudidentityV1beta1::MembershipRole>]
|
2784
|
+
attr_accessor :roles
|
2785
|
+
|
2786
|
+
def initialize(**args)
|
2787
|
+
update!(**args)
|
2788
|
+
end
|
2789
|
+
|
2790
|
+
# Update properties of this object
|
2791
|
+
def update!(**args)
|
2792
|
+
@description = args[:description] if args.key?(:description)
|
2793
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2794
|
+
@group = args[:group] if args.key?(:group)
|
2795
|
+
@group_key = args[:group_key] if args.key?(:group_key)
|
2796
|
+
@labels = args[:labels] if args.key?(:labels)
|
2797
|
+
@membership = args[:membership] if args.key?(:membership)
|
2798
|
+
@roles = args[:roles] if args.key?(:roles)
|
2799
|
+
end
|
2800
|
+
end
|
2801
|
+
|
2700
2802
|
# A membership role within the Cloud Identity Groups API. A `MembershipRole`
|
2701
2803
|
# defines the privileges granted to a `Membership`.
|
2702
2804
|
class MembershipRole
|
@@ -3066,14 +3168,14 @@ module Google
|
|
3066
3168
|
# The **Logout Redirect URL** (sign-out page URL) of the identity provider. When
|
3067
3169
|
# a user clicks the sign-out link on a Google page, they will be redirected to
|
3068
3170
|
# this URL. This is a pure redirect with no attached SAML `LogoutRequest` i.e.
|
3069
|
-
# SAML single logout is
|
3171
|
+
# SAML single logout is not supported. Must use `HTTPS`.
|
3070
3172
|
# Corresponds to the JSON property `logoutRedirectUri`
|
3071
3173
|
# @return [String]
|
3072
3174
|
attr_accessor :logout_redirect_uri
|
3073
3175
|
|
3074
3176
|
# Required. The `SingleSignOnService` endpoint location (sign-in page URL) of
|
3075
3177
|
# the identity provider. This is the URL where the `AuthnRequest` will be sent.
|
3076
|
-
# Must use `HTTPS`.
|
3178
|
+
# Must use `HTTPS`. Assumed to accept the `HTTP-Redirect` binding.
|
3077
3179
|
# Corresponds to the JSON property `singleSignOnServiceUri`
|
3078
3180
|
# @return [String]
|
3079
3181
|
attr_accessor :single_sign_on_service_uri
|
@@ -3096,8 +3198,8 @@ module Google
|
|
3096
3198
|
include Google::Apis::Core::Hashable
|
3097
3199
|
|
3098
3200
|
# Output only. The SAML **Assertion Consumer Service (ACS) URL** to be used for
|
3099
|
-
# the IDP-initiated login.
|
3100
|
-
#
|
3201
|
+
# the IDP-initiated login. Assumed to accept response messages via the `HTTP-
|
3202
|
+
# POST` binding.
|
3101
3203
|
# Corresponds to the JSON property `assertionConsumerServiceUri`
|
3102
3204
|
# @return [String]
|
3103
3205
|
attr_accessor :assertion_consumer_service_uri
|
@@ -3138,6 +3240,32 @@ module Google
|
|
3138
3240
|
end
|
3139
3241
|
end
|
3140
3242
|
|
3243
|
+
# The response message for MembershipsService.SearchDirectGroups.
|
3244
|
+
class SearchDirectGroupsResponse
|
3245
|
+
include Google::Apis::Core::Hashable
|
3246
|
+
|
3247
|
+
# List of direct groups satisfying the query.
|
3248
|
+
# Corresponds to the JSON property `memberships`
|
3249
|
+
# @return [Array<Google::Apis::CloudidentityV1beta1::MembershipRelation>]
|
3250
|
+
attr_accessor :memberships
|
3251
|
+
|
3252
|
+
# Token to retrieve the next page of results, or empty if there are no more
|
3253
|
+
# results available for listing.
|
3254
|
+
# Corresponds to the JSON property `nextPageToken`
|
3255
|
+
# @return [String]
|
3256
|
+
attr_accessor :next_page_token
|
3257
|
+
|
3258
|
+
def initialize(**args)
|
3259
|
+
update!(**args)
|
3260
|
+
end
|
3261
|
+
|
3262
|
+
# Update properties of this object
|
3263
|
+
def update!(**args)
|
3264
|
+
@memberships = args[:memberships] if args.key?(:memberships)
|
3265
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3266
|
+
end
|
3267
|
+
end
|
3268
|
+
|
3141
3269
|
# The response message for GroupsService.SearchGroups.
|
3142
3270
|
class SearchGroupsResponse
|
3143
3271
|
include Google::Apis::Core::Hashable
|
@@ -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.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230523"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -502,6 +502,12 @@ module Google
|
|
502
502
|
include Google::Apis::Core::JsonObjectSupport
|
503
503
|
end
|
504
504
|
|
505
|
+
class MembershipRelation
|
506
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
|
+
|
508
|
+
include Google::Apis::Core::JsonObjectSupport
|
509
|
+
end
|
510
|
+
|
505
511
|
class MembershipRole
|
506
512
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
513
|
|
@@ -586,6 +592,12 @@ module Google
|
|
586
592
|
include Google::Apis::Core::JsonObjectSupport
|
587
593
|
end
|
588
594
|
|
595
|
+
class SearchDirectGroupsResponse
|
596
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
597
|
+
|
598
|
+
include Google::Apis::Core::JsonObjectSupport
|
599
|
+
end
|
600
|
+
|
589
601
|
class SearchGroupsResponse
|
590
602
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
591
603
|
|
@@ -698,10 +710,14 @@ module Google
|
|
698
710
|
class AndroidAttributes
|
699
711
|
# @private
|
700
712
|
class Representation < Google::Apis::Core::JsonRepresentation
|
713
|
+
property :cts_profile_match, as: 'ctsProfileMatch'
|
701
714
|
property :enabled_unknown_sources, as: 'enabledUnknownSources'
|
715
|
+
property :has_potentially_harmful_apps, as: 'hasPotentiallyHarmfulApps'
|
702
716
|
property :owner_profile_account, as: 'ownerProfileAccount'
|
703
717
|
property :ownership_privilege, as: 'ownershipPrivilege'
|
704
718
|
property :supports_work_profile, as: 'supportsWorkProfile'
|
719
|
+
property :verified_boot, as: 'verifiedBoot'
|
720
|
+
property :verify_apps_enabled, as: 'verifyAppsEnabled'
|
705
721
|
end
|
706
722
|
end
|
707
723
|
|
@@ -1211,6 +1227,8 @@ module Google
|
|
1211
1227
|
class Group
|
1212
1228
|
# @private
|
1213
1229
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1230
|
+
collection :additional_group_keys, as: 'additionalGroupKeys', class: Google::Apis::CloudidentityV1beta1::EntityKey, decorator: Google::Apis::CloudidentityV1beta1::EntityKey::Representation
|
1231
|
+
|
1214
1232
|
property :create_time, as: 'createTime'
|
1215
1233
|
property :description, as: 'description'
|
1216
1234
|
property :display_name, as: 'displayName'
|
@@ -1427,6 +1445,7 @@ module Google
|
|
1427
1445
|
# @private
|
1428
1446
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1429
1447
|
property :create_time, as: 'createTime'
|
1448
|
+
property :delivery_setting, as: 'deliverySetting'
|
1430
1449
|
property :member_key, as: 'memberKey', class: Google::Apis::CloudidentityV1beta1::EntityKey, decorator: Google::Apis::CloudidentityV1beta1::EntityKey::Representation
|
1431
1450
|
|
1432
1451
|
property :name, as: 'name'
|
@@ -1448,6 +1467,21 @@ module Google
|
|
1448
1467
|
end
|
1449
1468
|
end
|
1450
1469
|
|
1470
|
+
class MembershipRelation
|
1471
|
+
# @private
|
1472
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1473
|
+
property :description, as: 'description'
|
1474
|
+
property :display_name, as: 'displayName'
|
1475
|
+
property :group, as: 'group'
|
1476
|
+
property :group_key, as: 'groupKey', class: Google::Apis::CloudidentityV1beta1::EntityKey, decorator: Google::Apis::CloudidentityV1beta1::EntityKey::Representation
|
1477
|
+
|
1478
|
+
hash :labels, as: 'labels'
|
1479
|
+
property :membership, as: 'membership'
|
1480
|
+
collection :roles, as: 'roles', class: Google::Apis::CloudidentityV1beta1::MembershipRole, decorator: Google::Apis::CloudidentityV1beta1::MembershipRole::Representation
|
1481
|
+
|
1482
|
+
end
|
1483
|
+
end
|
1484
|
+
|
1451
1485
|
class MembershipRole
|
1452
1486
|
# @private
|
1453
1487
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1571,6 +1605,15 @@ module Google
|
|
1571
1605
|
end
|
1572
1606
|
end
|
1573
1607
|
|
1608
|
+
class SearchDirectGroupsResponse
|
1609
|
+
# @private
|
1610
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1611
|
+
collection :memberships, as: 'memberships', class: Google::Apis::CloudidentityV1beta1::MembershipRelation, decorator: Google::Apis::CloudidentityV1beta1::MembershipRelation::Representation
|
1612
|
+
|
1613
|
+
property :next_page_token, as: 'nextPageToken'
|
1614
|
+
end
|
1615
|
+
end
|
1616
|
+
|
1574
1617
|
class SearchGroupsResponse
|
1575
1618
|
# @private
|
1576
1619
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1222,13 +1222,14 @@ module Google
|
|
1222
1222
|
# the parent, e.g. `parent == 'customers/`customer_id`'`. The `customer_id` must
|
1223
1223
|
# begin with "C" (for example, 'C046psxkn'). [Find your customer ID.] (https://
|
1224
1224
|
# support.google.com/cloudidentity/answer/10070793) * Can contain optional
|
1225
|
-
# inclusion operators on `labels` such as `cloudidentity.googleapis.com/groups.
|
1225
|
+
# inclusion operators on `labels` such as `'cloudidentity.googleapis.com/groups.
|
1226
1226
|
# discussion_forum' in labels`). * Can contain an optional equality operator on `
|
1227
|
-
# domain_name`
|
1228
|
-
#
|
1229
|
-
# dev'), group_key == 'dev@abc.com'` *
|
1230
|
-
# contains/equality`
|
1231
|
-
# startsWith('dev')` , `display_name.contains('dev')`, `
|
1227
|
+
# domain_name`. e.g. `domain_name == 'abc.com'` * Can contain optional `
|
1228
|
+
# startsWith/contains/equality` operators on `group_key`, e.g. `group_key.
|
1229
|
+
# startsWith('dev')`, `group_key.contains('dev'), group_key == 'dev@abc.com'` *
|
1230
|
+
# Can contain optional `startsWith/contains/equality` operators on `display_name`
|
1231
|
+
# , such as `display_name.startsWith('dev')` , `display_name.contains('dev')`, `
|
1232
|
+
# display_name == 'dev'`
|
1232
1233
|
# @param [String] view
|
1233
1234
|
# The level of detail to be returned. If unspecified, defaults to `View.BASIC`.
|
1234
1235
|
# @param [String] fields
|
@@ -1618,6 +1619,62 @@ module Google
|
|
1618
1619
|
execute_or_queue_command(command, &block)
|
1619
1620
|
end
|
1620
1621
|
|
1622
|
+
# Searches direct groups of a member.
|
1623
|
+
# @param [String] parent
|
1624
|
+
# [Resource name](https://cloud.google.com/apis/design/resource_names) of the
|
1625
|
+
# group to search transitive memberships in. Format: groups/`group_id`, where
|
1626
|
+
# group_id is always '-' as this API will search across all groups for a given
|
1627
|
+
# member.
|
1628
|
+
# @param [String] order_by
|
1629
|
+
# The ordering of membership relation for the display name or email in the
|
1630
|
+
# response. The syntax for this field can be found at https://cloud.google.com/
|
1631
|
+
# apis/design/design_patterns#sorting_order. Example: Sort by the ascending
|
1632
|
+
# display name: order_by="group_name" or order_by="group_name asc". Sort by the
|
1633
|
+
# descending display name: order_by="group_name desc". Sort by the ascending
|
1634
|
+
# group key: order_by="group_key" or order_by="group_key asc". Sort by the
|
1635
|
+
# descending group key: order_by="group_key desc".
|
1636
|
+
# @param [Fixnum] page_size
|
1637
|
+
# The default page size is 200 (max 1000).
|
1638
|
+
# @param [String] page_token
|
1639
|
+
# The next_page_token value returned from a previous list request, if any
|
1640
|
+
# @param [String] query
|
1641
|
+
# Required. A CEL expression that MUST include member specification AND label(s).
|
1642
|
+
# Users can search on label attributes of groups. CONTAINS match ('in') is
|
1643
|
+
# supported on labels. Identity-mapped groups are uniquely identified by both a `
|
1644
|
+
# member_key_id` and a `member_key_namespace`, which requires an additional
|
1645
|
+
# query input: `member_key_namespace`. Example query: `member_key_id == '
|
1646
|
+
# member_key_id_value' && 'label_value' in labels`
|
1647
|
+
# @param [String] fields
|
1648
|
+
# Selector specifying which fields to include in a partial response.
|
1649
|
+
# @param [String] quota_user
|
1650
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1651
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1652
|
+
# @param [Google::Apis::RequestOptions] options
|
1653
|
+
# Request-specific options
|
1654
|
+
#
|
1655
|
+
# @yield [result, err] Result & error if block supplied
|
1656
|
+
# @yieldparam result [Google::Apis::CloudidentityV1beta1::SearchDirectGroupsResponse] parsed result object
|
1657
|
+
# @yieldparam err [StandardError] error object if request failed
|
1658
|
+
#
|
1659
|
+
# @return [Google::Apis::CloudidentityV1beta1::SearchDirectGroupsResponse]
|
1660
|
+
#
|
1661
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1662
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1663
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1664
|
+
def search_group_membership_direct_groups(parent, order_by: nil, page_size: nil, page_token: nil, query: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1665
|
+
command = make_simple_command(:get, 'v1beta1/{+parent}/memberships:searchDirectGroups', options)
|
1666
|
+
command.response_representation = Google::Apis::CloudidentityV1beta1::SearchDirectGroupsResponse::Representation
|
1667
|
+
command.response_class = Google::Apis::CloudidentityV1beta1::SearchDirectGroupsResponse
|
1668
|
+
command.params['parent'] = parent unless parent.nil?
|
1669
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
1670
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
1671
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
1672
|
+
command.query['query'] = query unless query.nil?
|
1673
|
+
command.query['fields'] = fields unless fields.nil?
|
1674
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1675
|
+
execute_or_queue_command(command, &block)
|
1676
|
+
end
|
1677
|
+
|
1621
1678
|
# Search transitive groups of a member. **Note:** This feature is only available
|
1622
1679
|
# to Google Workspace Enterprise Standard, Enterprise Plus, and Enterprise for
|
1623
1680
|
# Education; and Cloud Identity Premium accounts. A transitive group is any
|
@@ -1638,7 +1695,13 @@ module Google
|
|
1638
1695
|
# CONTAINS match ('in') is supported on labels. Identity-mapped groups are
|
1639
1696
|
# uniquely identified by both a `member_key_id` and a `member_key_namespace`,
|
1640
1697
|
# which requires an additional query input: `member_key_namespace`. Example
|
1641
|
-
# query: `member_key_id == 'member_key_id_value' && in labels`
|
1698
|
+
# query: `member_key_id == 'member_key_id_value' && in labels` Query may
|
1699
|
+
# optionally contain equality operators on the parent of the group restricting
|
1700
|
+
# the search within a particular customer, e.g. `parent == 'customers/`
|
1701
|
+
# customer_id`'`. The `customer_id` must begin with "C" (for example, 'C046psxkn'
|
1702
|
+
# ). This filtering is only supported for Admins with groups read permissons on
|
1703
|
+
# the input customer. Example query: `member_key_id == 'member_key_id_value' &&
|
1704
|
+
# in labels && parent == 'customers/C046psxkn'`
|
1642
1705
|
# @param [String] fields
|
1643
1706
|
# Selector specifying which fields to include in a partial response.
|
1644
1707
|
# @param [String] quota_user
|
@@ -1808,10 +1871,10 @@ module Google
|
|
1808
1871
|
# Lists InboundSamlSsoProfiles for a customer.
|
1809
1872
|
# @param [String] filter
|
1810
1873
|
# A [Common Expression Language](https://github.com/google/cel-spec) expression
|
1811
|
-
# to filter the results. The only
|
1812
|
-
#
|
1813
|
-
#
|
1814
|
-
#
|
1874
|
+
# to filter the results. The only supported filter is filtering by customer. For
|
1875
|
+
# example: `customer=="customers/C0123abc"`. Omitting the filter or specifying a
|
1876
|
+
# filter of `customer=="customers/my_customer"` will return the profiles for the
|
1877
|
+
# customer that the caller (authenticated user) belongs to.
|
1815
1878
|
# @param [Fixnum] page_size
|
1816
1879
|
# The maximum number of InboundSamlSsoProfiles to return. The service may return
|
1817
1880
|
# fewer than this value. If omitted (or defaulted to zero) the server will use a
|
@@ -2126,11 +2189,10 @@ module Google
|
|
2126
2189
|
|
2127
2190
|
# Lists the InboundSsoAssignments for a `Customer`.
|
2128
2191
|
# @param [String] filter
|
2129
|
-
# A CEL expression to filter the results. The only
|
2130
|
-
#
|
2131
|
-
#
|
2132
|
-
#
|
2133
|
-
# belongs to.
|
2192
|
+
# A CEL expression to filter the results. The only supported filter is filtering
|
2193
|
+
# by customer. For example: `customer==customers/C0123abc`. Omitting the filter
|
2194
|
+
# or specifying a filter of `customer==customers/my_customer` will return the
|
2195
|
+
# assignments for the customer that the caller (authenticated user) belongs to.
|
2134
2196
|
# @param [Fixnum] page_size
|
2135
2197
|
# The maximum number of assignments to return. The service may return fewer than
|
2136
2198
|
# this value. If omitted (or defaulted to zero) the server will use a sensible
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.39.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: 2023-
|
11
|
+
date: 2023-05-28 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/main/generated/google-apis-cloudidentity_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.39.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|