Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17622,8 +17622,10 @@ components:
type: string
type: object
SyntheticsRestrictedRoles:
deprecated: true
description: A list of role identifiers that can be pulled from the Roles API,
for restricting read and write access.
for restricting read and write access. This field is deprecated, use the restriction
policies API to manage permissions.
example:
- xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
items:
Expand Down
4 changes: 3 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55280,8 +55280,10 @@ components:
type: string
type: object
SyntheticsRestrictedRoles:
deprecated: true
description: A list of role identifiers that can be pulled from the Roles API,
for restricting read and write access.
for restricting read and write access. This field is deprecated, use the restriction
policies API to manage permissions.
example:
- xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
items:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,20 @@ public SyntheticsGlobalVariableAttributes addRestrictedRolesItem(String restrict

/**
* A list of role identifiers that can be pulled from the Roles API, for restricting read and
* write access.
* write access. This field is deprecated, use the restriction policies API to manage permissions.
*
* @return restrictedRoles
* @deprecated
*/
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RESTRICTED_ROLES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<String> getRestrictedRoles() {
return restrictedRoles;
}

@Deprecated
public void setRestrictedRoles(List<String> restrictedRoles) {
this.restrictedRoles = restrictedRoles;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,17 +398,20 @@ public SyntheticsMobileTestOptions addRestrictedRolesItem(String restrictedRoles

/**
* A list of role identifiers that can be pulled from the Roles API, for restricting read and
* write access.
* write access. This field is deprecated, use the restriction policies API to manage permissions.
*
* @return restrictedRoles
* @deprecated
*/
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RESTRICTED_ROLES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<String> getRestrictedRoles() {
return restrictedRoles;
}

@Deprecated
public void setRestrictedRoles(List<String> restrictedRoles) {
this.restrictedRoles = restrictedRoles;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,20 @@ public SyntheticsPrivateLocationMetadata addRestrictedRolesItem(String restricte

/**
* A list of role identifiers that can be pulled from the Roles API, for restricting read and
* write access.
* write access. This field is deprecated, use the restriction policies API to manage permissions.
*
* @return restrictedRoles
* @deprecated
*/
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RESTRICTED_ROLES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<String> getRestrictedRoles() {
return restrictedRoles;
}

@Deprecated
public void setRestrictedRoles(List<String> restrictedRoles) {
this.restrictedRoles = restrictedRoles;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -617,17 +617,20 @@ public SyntheticsTestOptions addRestrictedRolesItem(String restrictedRolesItem)

/**
* A list of role identifiers that can be pulled from the Roles API, for restricting read and
* write access.
* write access. This field is deprecated, use the restriction policies API to manage permissions.
*
* @return restrictedRoles
* @deprecated
*/
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RESTRICTED_ROLES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<String> getRestrictedRoles() {
return restrictedRoles;
}

@Deprecated
public void setRestrictedRoles(List<String> restrictedRoles) {
this.restrictedRoles = restrictedRoles;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,20 @@ public SyntheticsGlobalVariableAttributes addRestrictedRolesItem(String restrict

/**
* A list of role identifiers that can be pulled from the Roles API, for restricting read and
* write access.
* write access. This field is deprecated, use the restriction policies API to manage permissions.
*
* @return restrictedRoles
* @deprecated
*/
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RESTRICTED_ROLES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<String> getRestrictedRoles() {
return restrictedRoles;
}

@Deprecated
public void setRestrictedRoles(List<String> restrictedRoles) {
this.restrictedRoles = restrictedRoles;
}
Expand Down
Loading